/**
 * BRA Payments Styles
 */

/* Pay Dues */
.bra-pay-dues {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.bra-dues-info {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.bra-dues-info h3 {
    margin-top: 0;
    color: #333;
}

.bra-dues-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #2563EB;
    margin: 15px 0;
}

.bra-button-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Payment History */
.bra-payment-history {
    max-width: 600px;
    margin: 0 auto;
}

/* Status Badges */
.bra-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
}

.bra-status-completed,
.bra-status-paid {
    background: #d4edda;
    color: #155724;
}

.bra-status-pending {
    background: #fff3cd;
    color: #856404;
}

.bra-status-failed {
    background: #f8d7da;
    color: #721c24;
}

/* Membership Status Widget */
.bra-membership-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
}

.bra-status-label {
    font-weight: 500;
}

.bra-button-small {
    padding: 5px 12px;
    font-size: 12px;
    background: #2563EB;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
}

.bra-button-small:hover {
    background: #1D4ED8;
}

/* Processing State */
#bra-payment-processing {
    padding: 20px;
    text-align: center;
}

#bra-payment-processing p {
    margin: 0;
    color: #666;
}

/* Admin Styles */
.bra-status-completed { color: #155724; }
.bra-status-pending { color: #856404; }
.bra-status-failed { color: #721c24; }
