/* =====================================================
   Atelier Brooklyn - Suivi de Devis
   Charte : Noir & Mauve élégant
   ===================================================== */

:root {
    --primary: #7c3aed;        /* Mauve vibrant */
    --primary-dark: #6d28d9;   /* Mauve foncé */
    --primary-light: #a78bfa;  /* Mauve clair */
    --primary-rgb: 124, 58, 237; /* RGB pour rgba() */
    --secondary: #000000;      /* Noir */
    --secondary-light: #1f1f1f;
    --gray: #666666;
    --gray-light: #f4f4f4;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
    font-size: 16px;
}

/* ==================== HEADER ==================== */

header {
    background: var(--secondary);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

header p {
    font-size: 1.1rem;
    color: var(--primary-light);
}

/* ==================== CONTAINER ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    padding: 3rem 0;
}

/* ==================== FORMULAIRES ==================== */

.form-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.form-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

label.required::after {
    content: ' *';
    color: var(--error);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.help-text {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error,
select.error,
textarea.error {
    border-color: var(--error);
}

/* ==================== BOUTONS ==================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==================== ALERTS ==================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d1fae5;
    border-color: var(--success);
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border-color: var(--error);
    color: #991b1b;
}

.alert-info {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e3a8a;
}

.alert-warning {
    background: #fef3c7;
    border-color: var(--warning);
    color: #92400e;
}

/* ==================== CARDS ==================== */

.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-header {
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ==================== TABLES ==================== */

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

table thead {
    background: var(--primary);
    color: var(--white);
}

table th {
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

table tbody tr:hover {
    background: var(--gray-light);
}

/* ==================== BADGES ==================== */

.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e3a8a;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-error {
    background: #fee2e2;
    color: #991b1b;
}

.badge-secondary {
    background: var(--gray-light);
    color: var(--gray);
}

/* ==================== LOADING ==================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== FOOTER ==================== */

footer {
    background: var(--secondary);
    color: var(--gray-light);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary);
}

/* ==================== ANIMATIONS ==================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Staggered delays */
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }


/* Enhanced hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.table-animate tbody tr {
    transition: background-color 0.3s ease;
    opacity: 0; /* Start hidden for JS animation */
}

.table-animate tbody tr.visible {
    opacity: 1;
    animation: fadeIn 0.5s ease-out forwards;
}


/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    table {
        font-size: 0.875rem;
    }

    table th,
    table td {
        padding: 0.5rem;
    }
}

/* ==================== UTILITIES ==================== */

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.hidden {
    display: none !important;
}

.flex {
    display: flex !important;
}

.justify-between {
    justify-content: space-between !important;
}

.items-center {
    align-items: center !important;
}

.gap-2 {
    gap: 1rem !important;
}

/* ==================== COMPTEURS DE PERSONNES ==================== */

.total-personnes-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.total-personnes-badge .total-label {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.total-personnes-badge .total-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.total-personnes-badge .total-unit {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.total-personnes-badge.pulse {
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.personnes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.personne-counter {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.personne-counter:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.personne-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.personne-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.personne-info {
    display: flex;
    flex-direction: column;
}

.personne-info strong {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.personne-info small {
    font-size: 0.875rem;
    color: var(--gray);
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.counter-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    user-select: none;
}

.counter-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.counter-btn:active,
.counter-btn.btn-clicked {
    transform: scale(0.95);
}

.counter-display {
    width: 70px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--gray-light);
    color: var(--secondary);
    cursor: default;
    padding: 0;
}

.counter-display:focus {
    outline: none;
    border-color: var(--border);
    box-shadow: none;
}

@media (max-width: 768px) {
    .personnes-grid {
        grid-template-columns: 1fr;
    }

    .total-personnes-badge .total-value {
        font-size: 2rem;
    }

    .counter-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .counter-display {
        width: 60px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* ==================== FILTRAGE DES CRÉNEAUX ==================== */

#creneaux_filter_panel {
    position: relative;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden; /* To contain the collapsing content */
}

#creneaux_filter_panel.has-active-filters {
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

/* New UX Styles */
.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter-panel-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-panel-header .chevron {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--gray);
}

.filter-panel-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 1000px; /* Large value for open state */
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 1;
}

.filter-panel-content.collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
}

.filter-panel-header.collapsed .chevron {
    transform: rotate(-90deg);
}

/* Filtering state */
#creneaux_filter_panel.is-filtering .filter-panel-content,
#horaire_debut.is-filtering {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Improved Checkboxes */
.filter-checkboxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    user-select: none;
}

.filter-checkbox-label:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-checkbox-label input[type="checkbox"] {
    display: none; /* Hide original checkbox */
}

.filter-checkbox-label .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.filter-checkbox-label input:checked + .custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-checkbox-label .custom-checkbox::after {
    content: '✓';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.filter-checkbox-label input:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
}

.filter-checkbox-label span {
    transition: color 0.2s ease;
}

.filter-checkbox-label input:checked ~ span {
    color: var(--primary);
    font-weight: 500;
}


.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.btn-reset-filters:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.btn-reset-filters:active {
    transform: scale(0.95);
}

.badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #dc3545;
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.creneau-date-filter {
    font-family: inherit;
    font-size: 0.9rem;
}

/* Animation pour les créneaux à tarif réduit */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

#horaire_debut option[style*="linear-gradient"] {
    position: relative;
}

/* Style pour les créneaux à tarif réduit dans le select */
select#horaire_debut option {
    padding: 0.5rem;
    margin: 0.25rem 0;
}

/* Responsive pour le panneau de filtrage */
@media (max-width: 768px) {
    .filter-checkboxes-grid {
        grid-template-columns: 1fr;
    }

    #creneaux_filter_panel {
        padding: 1rem !important;
    }

    #creneaux_filter_panel h3 {
        font-size: 1rem !important;
    }

    #creneaux_filter_panel h4 {
        font-size: 0.875rem !important;
    }
}

/* ==================== SLIDER PRESTATIONS ==================== */

.prestations-swiper {
    margin: 2rem 0;
    padding: 1rem 0;
}

.prestations-swiper .swiper-slide {
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.prestations-swiper .swiper-slide:hover {
    transform: translateY(-5px);
}

/* Cacher les slides filtrés */
.prestations-swiper .swiper-slide.slide-filtered {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

/* Slide sélectionné */
.prestations-swiper .swiper-slide.slide-selected .prestation-card {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
    transform: scale(1.02);
}

.prestations-swiper .swiper-slide.slide-selected .prestation-card::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.swiper-slide .prestation-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.swiper-slide:hover .prestation-card {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.prestation-card .prestation-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--gray-light);
}

.prestation-card .prestation-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e8e8e8 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 4rem;
}

.prestation-card .prestation-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.prestation-card .prestation-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.5;
}

.prestation-card .prestation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.prestation-card .prestation-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.prestation-card .prestation-duration {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Boutons de navigation Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}

/* Pagination Swiper */
.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .prestation-card .prestation-image,
    .prestation-card .prestation-placeholder {
        height: 150px;
    }

    .prestation-card .prestation-title {
        font-size: 1.1rem;
    }

    .prestation-card .prestation-price {
        font-size: 1.25rem;
    }
}

/* ==================== FLATPICKR CALENDRIER ==================== */

/* Style personnalisé pour les dates avec créneaux normaux (VERT) */
.flatpickr-day.date-normal {
    background: var(--success) !important;
    color: var(--white) !important;
    border-color: var(--success) !important;
    font-weight: 600;
}

.flatpickr-day.date-normal:hover {
    background: #059669 !important;
    color: var(--white) !important;
}

.flatpickr-day.date-normal.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Style personnalisé pour les dates avec au moins un créneau réduit (JAUNE) */
.flatpickr-day.date-reduced {
    background: #fbbf24 !important; /* Jaune/Orange */
    color: #000000 !important;
    border-color: #f59e0b !important;
    font-weight: 600;
}

.flatpickr-day.date-reduced:hover {
    background: #f59e0b !important;
    color: #000000 !important;
}

.flatpickr-day.date-reduced.selected {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

/* Style pour les dates désactivées/grisées (aucun créneau) */
.flatpickr-day.flatpickr-disabled {
    color: #d1d5db !important;
    background: #f3f4f6 !important;
    cursor: not-allowed !important;
}

/* Améliorer le contraste pour la date du jour */
.flatpickr-day.date-normal.today,
.flatpickr-day.date-reduced.today {
    border: 2px solid var(--white) !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 0 0 2px var(--success);
}

/* Style pour le calendrier global */
.flatpickr-calendar {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.flatpickr-months {
    background: var(--primary) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--white) !important;
    font-weight: 600;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: var(--white) !important;
}

.flatpickr-weekday {
    color: var(--primary) !important;
    font-weight: 600;
}
