.payment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #0d6efd, #6f42c1, #20c997); */
}

/* .payment-card:hover {
    transform: translateY(-2px);
} */

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #2c3e50;
}

.payment-row {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.payment-row:hover {
    background: rgba(241, 243, 245, 0.9);
}

.payment-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.payment-value {
    font-weight: 700;
    color: #2c3e50;
}