/* Box Cricket Booking System - Professional White & Grey Theme */

:root {
    /* Professional Color Palette */
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --accent-blue: #3b82f6;
    --accent-teal: #06b6d4;
    --white: #ffffff;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --grey-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #f0fff7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fff9df;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--grey-50);
    color: var(--grey-900);
    line-height: 1.6;
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Enhanced Navigation */
.bg-dark-green {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-900) 100%) !important;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--grey-200);
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: white !important;
    letter-spacing: 0.5px;
}

.nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
    color: rgba(255,255,255,0.9) !important;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
    color: white !important;
}

.nav-link i {
    margin-right: 0.5rem;
}

/* Enhanced Cards */
.card {
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: white;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--grey-300);
}

.card-header {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-700) 100%);
    color: white;
    border-radius: 0 !important;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.card-body {
    padding: 0.75rem;
    background: white;
    color: var(--grey-900);
}

/* Enhanced Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    color: white;
}

.btn-info {
    background: linear-gradient(135deg, var(--info) 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(6, 182, 212, 0.2);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 8px rgba(6, 182, 212, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-outline-danger {
    border: 2px solid var(--danger);
    color: var(--danger);
    background: transparent;
}

.btn-outline-danger:hover {
    background: var(--danger);
    color: white;
}

.btn-outline-success {
    border: 2px solid var(--success);
    color: var(--success);
    background: transparent;
}

.btn-outline-success:hover {
    background: var(--success);
    color: white;
}

.btn-light {
    background: var(--grey-100);
    color: var(--grey-900);
    border: 1px solid var(--grey-300);
}

.btn-light:hover {
    background: var(--grey-200);
    color: var(--grey-900);
}

/* Enhanced Toggle Switch */
.payment-toggle {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 36px;
}

.payment-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grey-300);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 36px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.payment-toggle .slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.payment-toggle input:checked + .slider {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.payment-toggle input:checked + .slider:before {
    transform: translateX(28px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Enhanced Status Badges */
.badge {
    padding: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.badge-paid {
    background: var(--success);
    color: white;
}

.badge-pending {
    background: var(--warning);
    color: white;
}

.badge-scheduled {
    background: var(--info);
    color: white;
}

.badge-cancelled {
    background: var(--danger);
    color: white;
}

.badge-completed {
    background: var(--grey-600);
    color: white;
}

/* Enhanced Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--grey-300);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    transition: all 0.3s;
    background: white;
    color: var(--grey-900);
}

.form-control::placeholder {
    color: var(--grey-400);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
    background: white;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--grey-700);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group-text {
    background: var(--grey-100);
    color: var(--grey-700);
    border: 1px solid var(--grey-300);
    border-radius: 8px 0 0 8px;
    font-weight: 600;
}

/* Sticky Bottom Actions */
.sticky-bottom-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--grey-200);
    backdrop-filter: blur(10px);
}

/* Enhanced Dashboard Stats */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    transition: all 0.3s;
    border: 1px solid var(--grey-200);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.stat-card .stat-icon {
    font-size: 3rem; 
    color: var(--primary-blue);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--grey-900);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Enhanced Player List */
.player-item {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    color: var(--grey-900);
    border: 1px solid var(--grey-200);
}

.player-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--accent-blue);
    border-color: var(--grey-300);
}

.player-id {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Enhanced Payment Screen */
.payment-item {
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    border: 2px solid var(--grey-200);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    color: var(--grey-900);
} 
.payment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grey-300);
    transition: all 0.3s;
}

.payment-item.paid {
    border-color: var(--success);
    background: var(--success-light);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.payment-item.paid::before {
    background: linear-gradient(90deg, var(--success), var(--accent-teal));
}

.payment-item.pending {
    border-color: var(--warning);
    background: var(--warning-light);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.payment-item.pending::before {
    background: linear-gradient(90deg, var(--warning), #f97316);
}

.extra-player-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.25rem;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.extra-player-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.extra-player-item {
    display: inline-block;
}

.extra-player-name {
    margin-right: 0.25rem;
}

.btn-edit-extra, .btn-delete-extra {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.btn-edit-extra:hover {
    background: rgba(59, 130, 246, 0.8);
    color: white;
    transform: scale(1.1);
}

.btn-delete-extra:hover {
    background: rgba(239, 68, 68, 0.8);
    color: white;
    transform: scale(1.1);
}

/* Enhanced Search Bar */
.search-container {
    position: sticky;
    top: 56px;
    z-index: 100;
    background: white;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey-200);
}

.search-container .input-group-text {
    border-radius: 8px 0 0 8px;
}

/* Enhanced Alerts */
.alert {
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    border-left: 4px solid;
}

.alert-success {
    background: var(--success-light);
    border-left-color: var(--success);
    color: #065f46;
}

.alert-danger {
    background: var(--danger-light);
    border-left-color: var(--danger);
    color: #991b1b;
}

.alert-warning {
    background: var(--warning-light);
    border-left-color: var(--warning);
    color: #92400e;
}

.alert-info {
    background: var(--info-light);
    border-left-color: var(--info);
    color: #1e40af;
}

/* Enhanced Tables */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
}

.table {
    margin-bottom: 0;
    color: var(--grey-900);
}

.table thead {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-700) 100%);
    color: white;
}

.table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.table tbody {
    background: white;
}

.table tbody tr {
    transition: all 0.2s;
    border-color: var(--grey-200);
}

.table tbody tr:hover {
    background: var(--grey-50);
    transform: scale(1.01);
}

.table tbody td {
    border-color: var(--grey-200);
    color: var(--grey-900);
}

/* Enhanced Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--grey-500);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    color: var(--grey-400);
}

.empty-state p {
    color: var(--grey-600);
}

/* Enhanced Today's Match */
.today-match {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.today-match::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.today-match h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.today-match .btn-light {
    background: rgba(255,255,255,0.2);
    color: white;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.today-match .btn-light:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}
.border-radius-8{
    border-radius: 8px !important;
}

/* List Group Enhancements */
.list-group-item {
    border: none;
    border-bottom: 1px solid var(--grey-200);
    padding: 0;
    transition: all 0.2s;
    background: white;
    color: var(--grey-900);
}

.list-group-item:hover {
    background: var(--grey-50);
    transform: translateX(5px);
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-flush .list-group-item {
    border-left: 3px solid transparent;
    transition: all 0.2s;
    margin-bottom: 20px;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
}

.list-group-flush .list-group-item:hover {
    border-left-color: var(--primary-blue);
    padding-left: 1rem;
}

/* Login Page Enhancements */
.login-page-wrapper {
    background: linear-gradient(135deg, var(--grey-100) 0%, var(--grey-200) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.login-page-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.login-page-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite reverse;
}

.login-page-wrapper .container {
    position: relative;
    z-index: 1;
}

.login-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--grey-200);
    position: relative;
    z-index: 2;
}

.login-card .card-header {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-700) 100%);
    border-bottom: 2px solid var(--primary-blue);
}

.login-card .form-control {
    background: white;
    border-color: var(--grey-300);
    color: var(--grey-900);
}

.login-card .form-control:focus {
    background: white;
    border-color: var(--primary-blue);
}

/* Unified Stats Card Styles */
.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--grey-50);
    border-radius: 10px;
    border: 1px solid var(--grey-200);
    transition: all 0.3s;
}

.stat-item:hover {
    background: var(--grey-100);
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

.stat-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.stat-item-content {
    flex-grow: 1;
}

.stat-item-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--grey-900);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-item-label {
    font-size: 0.85rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.financial-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--grey-50);
    border-radius: 12px;
    border: 1px solid var(--grey-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.financial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: inherit;
    transition: width 0.3s;
}

.financial-item:hover {
    background: var(--grey-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.financial-item:hover::before {
    width: 6px;
}

.financial-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.financial-content {
    flex-grow: 1;
}

.financial-label {
    font-size: 0.85rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.financial-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--grey-900);
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    
    .sticky-bottom-actions {
        position: relative;
        box-shadow: none;
        border-top: none;
        border-radius: 12px;
        margin-top: 1rem;
    }
    
    .stat-card {
        margin-bottom: 0;
    }
    
    .card {
        margin-bottom: 2rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, var(--grey-100) 25%, var(--grey-200) 50%, var(--grey-100) 75%);
    background-size: 1000px 100%;
}

/* Print Styles */
@media print {
    .navbar, .sticky-bottom-actions, .btn {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--grey-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}
   
/* Search Box Styling */
#player-search {
    border: 1px solid var(--grey-300);
    border-radius: 8px;
}

#player-search:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#clear-search {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.input-group-text {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

/* Payment Item Search Hide Animation */
.payment-item {
    transition: all 0.3s ease;
}

.payment-item[style*="display: none"] {
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Text Color Utilities */
.text-muted {
    color: var(--grey-600) !important;
}

.text-light {
    color: var(--grey-900) !important;
}

/* Small text adjustments */
small {
    color: var(--grey-600);
}

/* Fix for today-match animation */
.today-match::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}
