/* ==========================================================================
   1. GLOBALE EINSTELLUNGEN & VARIABLEN (Oybin)
   ========================================================================== */
:root {
    --text-main: #3c352d;      /* Edles Dunkelbraun für Texte */
    --text-muted: #70665c;     /* Dezentes Grau für Beschreibungen */
    --card-bg: rgba(255, 255, 255, 0.5); /* Exakte 50% Milchglas-Transparenz */
    --accent-blue: #4a6b82;    /* Oybin-Blau */
    --accent-green: #556b2f;   /* Großschönau-Grün */
    --accent-wood: #8b5a2b;    /* Warmes Holzbraun */
    --accent-light: #eae5da;   /* Cremeweiß / Beige */
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    line-height: 1.7;
    
    /* BOMBENFEST FIXIERTES HINTERGRUNDBILD OYBIN */
    background: linear-gradient(rgba(247, 244, 238, 0.15), rgba(247, 244, 238, 0.15)), 
                url('images/Hintergrund.JPG') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* ==========================================================================
   2. TOP-BAR UMSCHALTER (Desktop-Version: Fest im Vordergrund mitschwebend)
   ========================================================================== */
.top-switch-bar {
    background-color: #3c352d; 
    border-bottom: 1px solid var(--accent-light);
    padding: 10px 0;
    width: 100%;
    font-size: 0.85rem;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); 
    height: 56px;
    box-sizing: border-box;
}

.switch-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.switch-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.burger-menu-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 150px; 
}

.switch-label {
    color: #eae5da;
    font-weight: 500;
}

.switch-links {
    display: flex;
    gap: 12px;
}

.switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a0958a;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.switch-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.switch-btn.active {
    color: #ffffff;
    background-color: rgba(74, 107, 130, 0.25);
    border-color: var(--accent-blue);
    font-weight: bold;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.dot-green { background-color: var(--accent-green); }
.dot-blue { background-color: var(--accent-blue); }

.switch-right-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 1000002;
}

.top-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: #eae5da;
}

.top-icon-btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.05);
}

.top-icon-btn:hover svg { fill: var(--accent-blue); }
.top-icon-btn.top-icon-wa:hover { border-color: #25d366; }
.top-icon-btn.top-icon-wa:hover svg { fill: #25d366; }
.top-icon-btn.top-icon-tel:hover { border-color: var(--accent-wood); }
.top-icon-btn.top-icon-tel:hover svg { fill: var(--accent-wood); }

/* DESKTOP-WEICHE FÜR TEXTE */
.desktop-only-text { display: inline !important; }
.mobile-only-text { display: none !important; }


/* ==========================================================================
   3. HERO HEADER (Oybin: Das große grafische Logo perfekt umschlossen)
   ========================================================================== */
header.hero {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 140px; 
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-text-box {
    max-width: 750px;
}

.logo-h1-container {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    display: block !important;
    border: none !important;
}

.hero-logo {
    max-width: 820px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px #ffffff) 
            drop-shadow(0 0 25px #ffffff)
            drop-shadow(0 0 35px rgba(255, 255, 255, 0.95));
}


/* ==========================================================================
   4. CONTENT LAYOUT (Edle Milchglasoptik)
   ========================================================================== */
.container {
    max-width: 1140px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.container section:first-of-type {
    margin-top: 30px; 
    position: relative;
}

.container section {
    background: var(--card-bg); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 45px;
    box-shadow: 0 15px 40px rgba(60, 53, 45, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4); 
}

h2 { color: var(--accent-blue); font-size: 1.8rem; margin-top: 0; margin-bottom: 20px; }
h3 { color: var(--text-main); font-size: 1.3rem; margin-top: 30px; margin-bottom: 15px; }
ul { padding-left: 20px; margin-bottom: 25px; }
ul li { margin-bottom: 8px; }

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* ==========================================================================
   5. BILDERGALERIE RASTER (Exakt 5 Bilder pro Zeile auf dem PC)
   ========================================================================== */
.category-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin: 35px 0 15px 0;
    border-left: 4px solid var(--accent-blue);
    padding-left: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 14px; 
    margin-bottom: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==========================================================================
   6. ANREISE & GOOGLE MAPS (Mit fixierten runden Ecken)
   ========================================================================== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px; 
    border: 1px solid var(--accent-light);
    margin-top: 20px;
    overflow: hidden !important;
    position: relative;
    transform: translateZ(0); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


/* ==========================================================================
   7. PREISTABELLE & FORMULAR-STRUKTUR
   ========================================================================== */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95rem; }
.price-table th, .price-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--accent-light); }
.price-table th { background-color: rgba(74, 107, 130, 0.1); color: var(--accent-blue); font-weight: bold; }
.price-highlight { font-weight: bold; color: var(--accent-blue); }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: span 2; }
form h3 { grid-column: span 2; color: var(--accent-blue) !important; font-size: 1.2rem !important; margin-bottom: 5px !important; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #c8bfb3; border-radius: 8px; background-color: rgba(255, 255, 255, 0.9); font-family: inherit; font-size: 0.95rem; box-sizing: border-box;
}

button[type="submit"] {
    grid-column: span 2; 
    background-color: var(--accent-blue); 
    color: #ffffff; 
    border: none; 
    padding: 14px; 
    border-radius: 25px; 
    font-size: 1.05rem; 
    font-weight: bold; 
    cursor: pointer; 
    transition: background 0.2s ease; 
    margin-top: 15px;
}

button[type="submit"]:hover { 
    background-color: #385264; 
} /* REPARATUR: Diese schließende Klammer hat gefehlt und alles blockiert! */

/* Verhindert, dass sich die Datenschutz-Checkbox unschön in die Breite zieht */
.form-group input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

/* ==========================================================================
   8. BELEGUNGSPLAN & CALENDAR SPLIT
   ========================================================================== */
.calendar-split { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 25px; }
.calendar-box { background: rgba(255, 255, 255, 0.4); padding: 20px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.5); }
.calendar-container { width: 100%; height: 380px; }


/* ==========================================================================
   9. SEITENFUSS & FOOTER
   ========================================================================== */
footer { background-color: #3c352d; color: #eae5da; padding: 35px 20px; text-align: center; margin-top: 60px; border-top: 1px solid var(--accent-light); }
.footer-links a { color: #eae5da; text-decoration: none; margin: 0 15px; font-weight: 500; }
.footer-links a:hover { color: var(--accent-blue); }
.footer-bottom { margin-top: 20px; font-size: 0.85rem; color: #a09a8f; }


/* ==========================================================================
   10. LIGHTBOX CSS SYSTEM (Die reine CSS-Bilder-Großansicht)
   ========================================================================== */
.lightbox { display: none; position: fixed; z-index: 9999999; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.9); align-items: center; justify-content: center; }
.lightbox:target { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.close-btn { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 35px; text-decoration: none; }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 50px; text-decoration: none; padding: 0 20px; }
.prev { left: 10px; }
.next { right: 10px; }


/* ==========================================================================
   11. REINES CSS BURGER-MENÜ (Völlig ohne JavaScript, DSGVO-konform)
   ========================================================================== */
.burger-checkbox { display: none !important; }

.burger-icon {
    display: flex; flex-direction: column; justify-content: space-between; width: 22px; height: 16px; cursor: pointer; z-index: 1000001; position: relative;
}
.burger-icon span { display: block; width: 100%; height: 2px; background-color: #eae5da; border-radius: 2px; transition: all 0.3s ease-in-out; }

.burger-nav { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background-color: #3c352d; box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3); z-index: 9999999; transition: left 0.3s ease-in-out; display: block; }
.close-menu-area { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); z-index: -1; display: none; cursor: pointer; }
.burger-nav-content { padding: 80px 30px 30px 30px; display: flex; flex-direction: column; gap: 15px; }
.burger-nav-header { color: #a0958a; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 10px; }
.burger-nav-content a { color: #eae5da; text-decoration: none; font-size: 1.1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); transition: color 0.2s ease; }
.burger-nav-content a:hover { color: var(--accent-blue); }

.burger-nav-content a.nav-cta { margin-top: 15px; background-color: var(--accent-blue); color: #ffffff; text-align: center; border-radius: 20px; padding: 12px; font-weight: bold; border-bottom: none; }
.burger-nav-content a.nav-cta:hover { background-color: #385264; color: #ffffff; }

.burger-checkbox:checked ~ .burger-nav { left: 0; }
.burger-checkbox:checked ~ .burger-nav .close-menu-area { display: block; }
.burger-checkbox:checked ~ .burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-checkbox:checked ~ .burger-nav .close-menu-area { display: block; }
.burger-checkbox:checked ~ .burger-icon span:nth-child(2) { opacity: 0; }
.burger-checkbox:checked ~ .burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   12. SPHÄRISCHER MOBIL-BEREICH (Zweizeilig, Beige) - AUSSCHLIESSLICH FÜR MOBIL
   ========================================================================== */
@media (max-width: 768px) {
    
    /* DIE TOP-BAR MOBIL: Jetzt felsenfest auf 100% ohne PC-Störungen */
    .top-switch-bar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important; 
        right: auto !important;
        height: 86px !important;
        padding: 6px 0 !important;
        background-color: #eae5da !important; 
        border-bottom: 1px solid #c8bfb3 !important;
        z-index: 999999 !important;
        box-shadow: 0 3px 12px rgba(60, 53, 45, 0.15) !important;
        box-sizing: border-box !important;
    }

    .switch-container {
        padding: 0 15px !important; 
        display: flex !important;
        flex-direction: column !important; 
        justify-content: center !important;
        align-items: center !important;
        gap: 2px !important;
        height: 100% !important;
        box-sizing: border-box !important;
    }

    .switch-left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 !important; 
        box-sizing: border-box !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .burger-menu-container {
        margin-right: 0 !important;
        display: inline-flex !important;
        align-items: center;
    }

    .burger-icon span {
        background-color: #3c352d !important;
    }

    /* Text-Weichen für Mobile */
    .desktop-only-text { display: none !important; }
    .mobile-only-text { display: inline !important; }

    .switch-label {
        color: #3c352d !important;
        font-size: 0.70rem !important; 
        font-weight: bold !important;
        text-transform: uppercase !important;
        letter-spacing: 0.2px !important;
        margin-left: auto !important; 
        margin-right: 5px !important; 
        white-space: nowrap !important; 
    }

    .switch-links {
        display: flex !important;
        flex-direction: row !important; 
        gap: 4px !important;
        margin-left: 0 !important;
        white-space: nowrap !important;
    }

    .switch-btn {
        padding: 4px 6px !important; 
        font-size: 0.70rem !important;
        font-weight: bold !important;
        border-radius: 9px !important;
        text-shadow: none !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.06) !important;
        white-space: nowrap !important;
    }

    .switch-btn.btn-grossschoenau {
        color: #556b2f !important;
        background-color: rgba(85, 107, 47, 0.08) !important;
        border: 1px solid #556b2f !important;
    }

    .switch-btn.btn-oybin.active {
        color: #ffffff !important;
        background-color: #4a6b82 !important;
        border: 1px solid #4a6b82 !important;
    }

    .switch-btn .dot {
        display: none !important; 
    }

    /* ZEILE 2: Piktogramme zentriert */
    .switch-right-icons {
        margin: 0 auto !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 24px !important; 
        border-top: 1px solid rgba(60, 53, 45, 0.08) !important; 
        padding-top: 5px !important;
        margin-top: 4px !important;
    }

    .top-icon-btn {
        width: 32px !important;
        height: 32px !important;
        background-color: rgba(60, 53, 45, 0.03) !important;
        border: 1px solid rgba(60, 53, 45, 0.12) !important;
    }

    .top-icon-btn svg {
        width: 15px !important;
        height: 15px !important;
        fill: #3c352d !important;
    }

    .top-icon-btn.top-icon-wa svg { fill: #25d366 !important; }
    .top-icon-btn.top-icon-tel svg { fill: #8b5a2b !important; }

    /* OYBIN GRAFISCHES LOGO MOBIL: Verhindert Quetschen & zentriert das Bild */
    header.hero h1, .logo-h1-container {
        margin: 0 auto !important;
        padding: 0 !important;
        line-height: 0 !important; 
        display: block !important;
        text-align: center !important; 
    }

    .hero-logo {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    header.hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 105px !important; 
        padding-bottom: 15px !important;
        width: 100% !important;
    }

    .hero-content { 
        padding: 0 15px !important; 
        box-sizing: border-box !important;
    }

    /* CONTENT-CONTAINER SMARTPHONE: Symmetrisch 15px Abstand links und rechts */
    .container { 
        padding: 0 15px !important; 
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .container section:first-of-type { 
        margin-top: 15px !important; 
    }

    .container section { 
        padding: 20px 15px !important; 
        margin-bottom: 20px !important; 
        width: 100% !important; 
        box-sizing: border-box !important; 
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .split-container, .calendar-split, form {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .form-group.full-width, button[type="submit"], form h3 {
        grid-column: span 1 !important;
    }
} /* Schließt den mobilen Bereich sauber ab */

/* ==========================================================================
   13. CROSS SELLING BOX (Ferienhaus-Empfehlung Oybin -> Großschönau)
   ========================================================================== */
.cross-selling {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 30px;
    border-radius: 16px;
    margin: 45px auto;
    max-width: 1140px;
    box-shadow: 0 15px 40px rgba(60, 53, 45, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    box-sizing: border-box;
}

.cross-selling h2 { font-size: 1.5rem; margin-bottom: 12px; color: var(--text-main); }
.cross-selling p { font-size: 1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 20px auto; line-height: 1.6; }
.cross-selling a { color: #ffffff; text-decoration: none; font-weight: bold; display: inline-block; padding: 10px 22px; border-radius: 20px; transition: all 0.2s ease; background-color: var(--accent-blue); }
.cross-selling a:hover { background-color: #385264; transform: scale(1.02); }

@media (max-width: 768px) {
    .cross-selling { padding: 20px 15px !important; margin: 20px auto !important; border-radius: 12px !important; width: 100% !important; }
    .cross-selling h2 { font-size: 1.25rem !important; }
    .cross-selling p { font-size: 0.9rem !important; }
    .cross-selling a { font-size: 0.9rem !important; width: 100%; box-sizing: border-box; }
}

/* ==========================================================================
   FINALER RADIKAL-FIX: 1,5X DESKTOP-VERGRÖSSERUNG & VERTIKALE MITTE-ZENTRIERUNG
   ========================================================================== */
.welcome-content-flex {
    display: flex !important;
    align-items: center !important; /* Richtet Haus und rechten Text exakt mittig in der Höhe aus! */
    justify-content: flex-start !important;
    gap: 35px !important; /* Angenehmer Abstand zum Text bei der neuen Bildgröße */
    margin-bottom: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.welcome-image-box {
    flex: 0 0 450px !important; /* Desktop-Fix: Von 300px um das 1,5-Fache vergrößert auf 450px! */
    width: 450px !important;
    max-width: 450px !important;
    min-width: 450px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* ISOLIERUNGS-SELEKTOR: Schützt das 450px-Bild vor jeglicher Galerie-Verzerrung */
.container section .welcome-content-flex .welcome-image-box img#oybin-welcome-house,
.container section img#oybin-welcome-house,
#oybin-welcome-house {
    width: 450px !important; /* Erzwingt die neue 450px Breite am PC */
    max-width: 450px !important;
    min-width: 450px !important;
    height: auto !important; 
    min-height: auto !important;
    max-height: none !important;
    
    aspect-ratio: auto !important; 
    object-fit: contain !important; 
    
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.6)) !important;
}

.welcome-text-box {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   SMARTPHONE-WEICHE: Gleichmäßige Überschriften-Skalierung (H3 = Textgröße)
   ========================================================================== */
@media (max-width: 768px) {
    /* Harmonische Verkleinerung der mobilen Überschriften */
    .container section h1, 
    header.hero h1, 
    .logo-h1-container {
        font-size: 1.45rem !important; /* Kompakte H1 fürs Smartphone */
    }

    .container section h2 {
        font-size: 1.2rem !important;  /* Ausbalancierte H2 im Content */
    }

    .container section h3 {
        font-size: 1rem !important;    /* H3 nimmt EXAKT die Größe des Fließtextes (1rem / 16px) an! */
        font-weight: bold !important;  /* Bleibt fettgedruckt für die Struktur */
    }

    /* Bild- & Text-Stapelung mobil */
    .welcome-content-flex {
        flex-direction: column !important; /* Stapelt Bild oben, Text unten */
        align-items: center !important;
        gap: 20px !important;
    }
    
    .welcome-image-box {
        flex: 0 0 auto !important;
        width: 280px !important; /* Behält deine optimale Mobilgröße bei */
        max-width: 280px !important;
        min-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .container section .welcome-content-flex .welcome-image-box img#oybin-welcome-house,
    .container section img#oybin-welcome-house,
    #oybin-welcome-house {
        width: 280px !important;
        max-width: 280px !important;
        min-width: 280px !important;
    }
    
    .welcome-text-box p {
        text-align: center !important;
    }
}

/* ==========================================================
   FLATPICKR DESIGN - Ferienhaus Oybin
   ========================================================== */

.flatpickr-calendar {
    border: 1px solid #c8bfb3;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
    font-family: Arial, Helvetica, sans-serif;
}

.flatpickr-months {
    background: #4a6b82;
    color: #fff;
}

.flatpickr-current-month {
    color: #fff;
    font-weight: bold;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff;
    background: transparent;
}

.flatpickr-weekdays {
    background: #f4f4f4;
}

.flatpickr-weekday {
    color: #4a6b82;
    font-weight: bold;
}

.flatpickr-day {
    border-radius: 6px;
    transition: all .15s ease;
}

.flatpickr-day:hover {
    background: #d8e7f0;
}

.flatpickr-day.today {
    border: 2px solid #4a6b82;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
    background: #4a6b82 !important;
    border-color: #4a6b82 !important;
    color: #fff !important;
}

//* ==========================================================
   BELEGTE TAGE
   ========================================================== */

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay.flatpickr-disabled,
.flatpickr-day.nextMonthDay.flatpickr-disabled {

    background: #d9534f !important;
    border: 1px solid #b52b27 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    font-weight: bold;
}

/* Belegte Tage beim Überfahren nicht verändern */
.flatpickr-day.flatpickr-disabled:hover {
    background: #d9534f !important;
    color: #ffffff !important;
}

/* Ausgewählte Tage */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
    background: #4a6b82 !important;
    border-color: #4a6b82 !important;
    color: #ffffff !important;
}

/* ==========================================================
   Pfeile
   ========================================================== */

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #ffffff !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #ffd166 !important;
}
