/* Custom Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Sarabun', 'Prompt', sans-serif;
}

/* Season Cards */
.season-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #dee2e6;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #0d6efd;
}

/* Form Styles */
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Booking Number Display */
.number-display {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .card-header h3, .card-header h4 {
        font-size: 1.2rem;
    }
}

/* Admin Sidebar */
.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Dashboard Cards */
.card .card-body h2 {
    font-weight: 700;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}