/* M-Pesa Premium Modal Styles */
.mpesa-modal-content {
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(0, 178, 45, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    padding: 30px 20px !important;
    max-width: 450px !important;
}

.mpesa-countdown-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpesa-countdown-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00b22d;
}

.mpesa-progress-container {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.mpesa-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00b22d, #4ade80);
    transition: width 1s linear;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.status-badge-pending {
    background: #fff8e1;
    color: #f57f17;
}

.payment-details-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.payment-detail-label {
    color: #64748b;
}

.payment-detail-value {
    font-weight: 600;
    color: #1e293b;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .mpesa-modal-content {
        padding: 20px 10px !important;
    }
    .mpesa-logo-container {
        width: 80px;
        height: 80px;
    }
    .mpesa-countdown-value {
        font-size: 1.5rem;
    }
}
