/* Outlyx Commissions Public Styles */

.outlyx-affiliate-dashboard {
    max-width: 800px;
}

.outlyx-affiliate-dashboard h2 {
    margin-bottom: 20px;
}

.outlyx-affiliate-dashboard h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Stats */
.affiliate-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.affiliate-stats .stat-box {
    flex: 1;
    min-width: 120px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.affiliate-stats .stat-label {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.affiliate-stats .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #212529;
}

/* Referral link */
.referral-link-box {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.referral-link-box input {
    flex: 1;
}

.referral-link-box .copy-link {
    white-space: nowrap;
}

.referral-code {
    font-size: 18px;
    padding: 8px 15px;
    background: #e9ecef;
    border-radius: 4px;
}

/* Commission status colors */
.status-pending {
    color: #856404;
}

.status-approved {
    color: #155724;
}

.status-paid {
    color: #004085;
}

.status-cancelled,
.status-refunded {
    color: #721c24;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .affiliate-stats {
        flex-direction: column;
    }

    .referral-link-box {
        flex-direction: column;
    }
}
