/**
 * HYIP Manager Frontend CSS
 */

/* Rating Form */
.hyip-rating-form,
.hyip-review-form,
.hyip-payout-form {
    background: #141c3a;
    border: 1px solid #1a237e;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.hyip-rating-form h3,
.hyip-review-form h3,
.hyip-payout-form h3 {
    color: #4fc3f7;
    margin-bottom: 15px;
    font-size: 18px;
}

.rating-scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.score-row label {
    width: 100px;
    color: #b0bec5;
    font-size: 14px;
}

.score-row .rating-input {
    display: flex;
    gap: 5px;
}

.score-row .star {
    font-size: 20px;
    color: #546e7a;
    cursor: pointer;
    transition: color 0.2s;
}

.score-row .star:hover,
.score-row .star.active {
    color: #ffc107;
}

/* Reviews List */
.hyip-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    background: #0e1633;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #1a237e;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author .name {
    color: #4fc3f7;
    font-weight: 600;
    margin-right: 10px;
}

.review-author .date {
    color: #78909c;
    font-size: 12px;
}

.review-rating .stars {
    color: #ffc107;
    margin-right: 5px;
}

.review-rating .rating-number {
    color: #78909c;
    font-size: 12px;
}

.review-title {
    color: #eceff1;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-content {
    color: #b0bec5;
    line-height: 1.6;
}

.review-actions {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.review-actions .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

/* Monitoring Status */
.monitoring-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 13px;
}

.monitoring-status.status-online {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.monitoring-status.status-offline {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.monitoring-status.status-error {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.monitoring-status.not-checked {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.monitoring-status .status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.monitoring-status .response-time {
    color: #78909c;
    font-size: 12px;
}

.monitoring-status .last-checked {
    color: #546e7a;
    font-size: 11px;
}

/* Login Required */
.login-required {
    background: #1a237e;
    color: #81d4fa;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.login-required a {
    color: #4fc3f7;
    font-weight: 600;
}

/* Already Rated */
.already-rated {
    background: #1b5e20;
    color: #a5d6a7;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

/* No Reviews */
.no-reviews,
.no-payouts {
    color: #78909c;
    text-align: center;
    padding: 30px;
    font-style: italic;
}

/* Payout Table */
.payout-table {
    width: 100%;
    border-collapse: collapse;
    background: #141c3a;
    border-radius: 5px;
    overflow: hidden;
}

.payout-table th,
.payout-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #1a237e;
}

.payout-table th {
    background: #1a237e;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.payout-table td {
    font-size: 13px;
    color: #b0bec5;
}

.payout-table tr:hover td {
    background: rgba(26, 35, 126, 0.3);
}

.payout-amount {
    color: #66bb6a;
    font-weight: 600;
}

/* Stats Shortcode */
.hyip-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hyip-stats .stat-box {
    background: #141c3a;
    border: 1px solid #1a237e;
    border-radius: 5px;
    padding: 20px 30px;
    text-align: center;
    min-width: 150px;
}

.hyip-stats .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #4fc3f7;
}

.hyip-stats .stat-label {
    color: #78909c;
    font-size: 13px;
    margin-top: 5px;
}