/* ===================================
   Euferien.de - Main Stylesheet
   Farben: #00bfa6 (Lila) -> #007c91 (Rot)
   =================================== */

/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #00bfa6;
    --secondary-color: #007c91;
    --gradient: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    --gradient-hover: linear-gradient(135deg, #7a5aad 0%, #f36b68 100%);
    
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient-light: linear-gradient(135deg, #f5f0fa 0%, #fef5f5 100%);
    
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    --container-max-width: 1400px;
    --content-max-width: 900px;
    --side-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}



/* ===================================
   Header
   =================================== */
.main-header {
    background: var(--gradient);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--text-white);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.logo .tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 18px 24px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary-color);
    background-color: var(--bg-light);
    border-bottom-color: var(--secondary-color);
}

/* Dropdown */
.dropdown-icon {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 700px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    padding: 24px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    flex: 1;
}

.submenu-title {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 12px;
    margin-bottom: 8px;
    background: var(--bg-gradient-light);
    border-radius: 8px;
    font-size: 0.95rem;
}

.submenu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.submenu-content a {
    padding: 8px 12px;
    color: var(--text-dark);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.submenu-standalone {
    display: block;
    padding: 10px 16px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    transition: var(--transition);
}

.submenu-standalone:hover {
    background: var(--gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,60 Q600,120 0,60 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    background: var(--bg-white);
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-white);
    border: none;
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 73, 150, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    border-color: transparent;
}

.btn-secondary:hover::before {
    display: block;
    opacity: 1;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    border: none;
}

.btn-link::before {
    display: none;
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===================================
   Main Content
   =================================== */
.main-content {
    padding: 60px 0;
}

.main-content section {
    margin-bottom: 80px;
}

.main-content h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}


/* Mobile - immer genau 2 Karten pro Reihe */
@media (max-width: 768px) {
    .dl-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .dl-card {
        min-width: 0;
    }
}

.dl-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.dl-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dl-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.calendar-preview {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.dl-card:hover .calendar-preview {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.dl-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
}

.dl-actions .btn {
    flex: 1;
    padding: 12px 24px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    border: 2px solid var(--border-color);
}

.dl-actions .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.dl-actions .btn:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dl-actions .btn:hover::before {
    opacity: 1;
}


/* ===================================
   Footer
   =================================== */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--text-white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Loading State
   =================================== */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   Responsive Design
   =================================== */


    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .bl-card {
        flex: 0 0 25%;
    }
    
    .dropdown-content {
        min-width: 600px;
    }

/* Mobile Large */
@media (max-width: 768px) {
    
    .main-header {
        padding: 16px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .tagline {
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Navigation - ANGEPASST */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--bg-white);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 1002;
        padding: 0;  /* ⭐ WICHTIG: Kein Padding auf Container */
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* ⭐ NAV-WRAPPER: Kein Flex mehr, normales Block-Layout */
    .nav-wrapper {
        display: block;
        padding: 0;  /* Kein Padding */
    }
    
    .nav-list {
        flex-direction: column;
        padding: 0;  /* ⭐ KEIN Padding auf Liste */
    }
    
    .nav-list > li {
        width: 100%;  /* ⭐ Volle Breite */
    }
    
    .nav-list > li > a {
        padding: 16px 20px;  /* ⭐ Weniger seitliches Padding */
        border-bottom: 1px solid var(--border-color);
        display: block;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        min-width: 100%;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        display: none;
        flex-direction: column;
        padding: 0;
        background-color: var(--bg-light);
    }
    
    .dropdown.active .dropdown-content {
        display: flex;
    }
    
        .submenu {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
        width: 100%;  /* ⭐ Volle Breite */
    }
    
    .submenu-title {
        margin: 0 20px 12px;  /* ⭐ Reduziertes Margin */
    }
    
    .submenu-content a {
        padding: 10px 20px 10px 40px;  /* ⭐ Links 40px für Einrückung */
    }
    
    .submenu-standalone {
        margin: 12px 20px;  /* ⭐ Reduziertes Margin */
    }
    
    /* Hero */
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Main Content */
    .main-content {
        padding: 40px 0;
    }
    
   .main-content section {
        margin-bottom: 50px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    /* Bundesländer Slider */
    .bl-card {
        flex: 0 0 33.333%;
    }
    
    .bl-btn {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    
    .bl-prev {
        left: 5px;
    }
    
    .bl-next {
        right: 5px;
    }
    
    /* Feiertage */
    .feiertag-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }
    
    .feiertag-date {
        text-align: left;
    }
    
      /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .bl-card {
        flex: 0 0 50%;
    }
    
    .bl-card img {
        height: 100px;
    }
    
    .bl-card span {
        font-size: 0.8rem;
    }
    
    .year-links {
        gap: 10px;
    }
    
    .year-links a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .holiday-info-card {
        padding: 24px 20px;
    }
    
    .holiday-name {
        font-size: 1.4rem;
    }
    
    .info-card {
        padding: 20px;
    }
}

/* Desktop Navigation Hover Effect */
@media (min-width: 769px) {
    body.menu-open {
        overflow: auto;
    }
}



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}



/* ═══════════════════════════════════════════════════════════════════
                        KALENDER-SEITEN -
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Bundesland & Jahr Auswahl - VERBESSERT
   =================================== */
.selection-section {
    margin: 40px 0;
}

.selection-card {
    background: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102, 73, 150, 0.3);
    padding: 32px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.selection-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.selection-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.state-flag {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.selection-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selection-dropdown label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-select {
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 240px;
}

.custom-select:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: var(--bg-white);
    transform: translateY(-1px);
}

.custom-select:focus {
    outline: none;
    border: 2px solid var(--text-white);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}


/* ===================================
   Jahreskalender - VERBESSERTES DESIGN
   =================================== */
.content-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 40px 0 30px;
    text-align: center;
}

.jahreskalender {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3er-REIHE statt 4er */
    gap: 24px;
    margin: 40px 0;
}

.monat {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 0;
    width: 100%;
    position: relative;  /* ⭐ WICHTIG: Falls noch nicht vorhanden */
    z-index: 1;         /* ⭐ NEU: Standard z-index */
}

.monat:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(102, 73, 150, 0.2);
    z-index: 100;  /* ⭐ NEU: Erhöht beim Hover */
}

.monat.aktuell {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(225, 89, 86, 0.25);
}

.monat h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;  /* Verhindert Umbruch */
}

.wochentage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.wochentage div {
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.tage div {
    width: 100%;
    padding-bottom: 100%;  /* Original Wert - perfektes Quadrat */
    position: relative;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: default;
    border: 1px solid transparent;
}

.tage div::after {
    content: attr(data-day);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;  /* Original Größe */
    font-weight: 500;   /* Original Gewicht */
}

.tage div.leer {
    background: transparent;
    border: none;
}

.tage div.leer::after {
    content: none;
}

.tage div:not(.leer) {
    background: var(--bg-white);
    border-color: #e8e8e8;
}

.tage div.wochenende:not(.ferien):not(.feiertag) {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tage div.wochenende:not(.ferien):not(.feiertag)::after {
    color: #888;
    font-weight: 600;
}

/* FERIEN: HELL GRÜN (KEIN GRADIENT) */
.tage div.ferien {
    background: #90EE90;  /* Hell Grün */
    border-color: #32CD32;
    box-shadow: 0 2px 4px rgba(50, 205, 50, 0.3);
}

.tage div.ferien::after {
    color: #333;
    font-weight: 700;
}

/* FEIERTAGE: WEIßER HINTERGRUND, ROTE ZAHL - KEIN ROTER RAND */
.tage div.feiertag {
    background: var(--bg-white);
    border: 1px solid #e8e8e8;  /* Normaler grauer Border wie andere Tage */
    box-shadow: none;
}

.tage div.feiertag::after {
    color: #e74c3c;  /* Rot */
    font-weight: 900;
}

/* FERIEN + FEIERTAG KOMBINIERT */
.tage div.ferien.feiertag {
    background: #90EE90;
    border: 1px solid #32CD32;  /* Grüner Border wie Ferien */
    box-shadow: 0 2px 4px rgba(50, 205, 50, 0.3);
}

.tage div.ferien.feiertag::after {
    color: #e74c3c;  /* Rote Zahl */
    font-weight: 900;
}

.tage div.heute {
    border: 3px solid var(--secondary-color) !important;
    box-shadow: 0 0 0 4px rgba(225, 89, 86, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.tage div.heute::after {
    font-weight: 900;
}

.tage div:not(.leer):hover {
    transform: scale(1.15);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tooltip Styling - HOHER Z-INDEX */
.tage div[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 62, 80, 0.95);
    color: var(--text-white);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;  /* SEHR HOCH für Tooltip */
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: tooltipFadeIn 0.2s ease;
}

.tage div[title]:hover::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(44, 62, 80, 0.95);
    z-index: 1001;  /* HÖHER als Tooltip */
}

.tage div[title]:hover {
    z-index: 999;  /* Tag selbst auch höher beim Hover */
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===================================
   Info Section (Ferien & Feiertage)
   =================================== */
.info-section {
    margin: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 30px;
    border-top: 4px solid var(--primary-color);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.info-list li:hover {
    background: var(--bg-gradient-light);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.info-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-list li span {
    color: var(--text-light);
    text-align: right;
    font-size: 0.95rem;
}

.feiertage-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.feiertage-list li strong {
    color: var(--primary-color);
}

.feiertage-list li em {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: normal;
}

.total-count {
    margin-top: 20px;
    padding: 14px;
    background: var(--bg-gradient-light);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}


/* ═══════════════════════════════════════════════════════════════════
   Print & PDF Ansicht - MIT ABSTAND LINKS UND RECHTS
   ═══════════════════════════════════════════════════════════════════ */

@media print {
    /* Seitenformat - A4 Querformat */
    @page {
        size: A4 landscape;
        margin: 5mm;
    }
    
    /* Basis Reset */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }
    
    /* Verstecke alle Nicht-Kalender-Elemente */
    .main-header,
    .main-nav,
    .hero-section,
    .selection-section,
    .calendar-actions,
    .info-section,
    .download-section,
    .main-footer,
    .mobile-menu-toggle,
    .main-content > .container::before,
    .main-content > .container::after {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Container zurücksetzen */
    .main-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .main-content > .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Print-Header - kompakt oben */
    .print-header {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
        padding: 3mm 0 2mm 0 !important;
        margin: 0 !important;
        border-bottom: 1.5px solid #ddd !important;
        background: white !important;
        height: 15mm !important;
        z-index: 1000 !important;
        visibility: visible !important;
    }
    
    .print-header * {
        visibility: visible !important;
    }
    
    .print-header h1 {
        font-size: 14pt !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin: 0 0 1mm 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
    }
    
    .print-header .website {
        font-size: 9pt !important;
        font-weight: 400 !important;
        color: #666 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    /* Kalender Container - 4 Spalten × 3 Reihen MIT ABSTAND */
    #kalenderContainer,
    .jahreskalender {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-template-rows: repeat(3, 1fr) !important;
        gap: 3mm !important;
        position: fixed !important;
        top: 15mm !important;
        left: 5mm !important;
        right: 5mm !important;
        bottom: 0 !important;
        width: calc(100% - 10mm) !important;
        height: calc(100% - 15mm) !important;
        padding: 0 !important;
        margin: 0 !important;
        page-break-inside: avoid !important;
        page-break-after: avoid !important;
        visibility: visible !important;
    }
    
    #kalenderContainer *,
    .jahreskalender * {
        visibility: visible !important;
    }
    
    /* Monat Container */
    .monat {
        background: white !important;
        border: 1.5px solid #e0e0e0 !important;
        border-radius: 4px !important;
        padding: 2mm !important;
        page-break-inside: avoid !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }
    
    /* Monatstitel - Lila wie JPG */
    .monat h3 {
        font-size: 11pt !important;
        font-weight: 700 !important;
        text-align: center !important;
        color: #00bfa6 !important;
        margin: 0 0 1.5mm 0 !important;
        padding: 0 !important;
        border: none !important;
        flex-shrink: 0 !important;
    }
    
    /* Wochentage Header */
    .wochentage {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        gap: 0.5mm !important;
        margin-bottom: 1mm !important;
        flex-shrink: 0 !important;
    }
    
    .wochentage div {
        font-size: 7.5pt !important;
        font-weight: 600 !important;
        text-align: center !important;
        color: #666 !important;
        padding: 0.5mm 0 !important;
        background: transparent !important;
        line-height: 1 !important;
    }
    
    /* Tage Grid */
    .tage {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        gap: 0.5mm !important;
        flex: 1 !important;
        min-height: 0 !important;
    }
    
    /* Einzelne Tage */
    .tage div {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        padding-bottom: 0 !important;
        border: 0.5pt solid #e0e0e0 !important;
        border-radius: 2px !important;
        background: white !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Tag-Nummern */
    .tage div::after {
        content: attr(data-day) !important;
        position: static !important;
        transform: none !important;
        font-size: 8pt !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        line-height: 1 !important;
    }
    
    /* Leere Tage */
    .tage div.leer {
        background: transparent !important;
        border: none !important;
    }
    
    .tage div.leer::after {
        content: '' !important;
    }
    
    /* FERIEN - Hellgrün wie JPG */
    .tage div.ferien {
        background: #90EE90 !important;
        border: 0.5pt solid #90EE90 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .tage div.ferien::after {
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }
    
    /* FEIERTAG - ROT */
    .tage div.feiertag {
        background: white !important;
        border: 0.5pt solid #e0e0e0 !important;
    }
    
    .tage div.feiertag::after {
        color: #e74c3c !important;
        font-weight: 900 !important;
    }
    
    /* FERIEN + FEIERTAG - Grün mit roter Zahl */
    .tage div.ferien.feiertag {
        background: #90EE90 !important;
        border: 0.5pt solid #90EE90 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .tage div.ferien.feiertag::after {
        color: #e74c3c !important;
        font-weight: 900 !important;
    }
    
    /* WOCHENENDE - Hellgrau */
    .tage div.wochenende:not(.ferien):not(.feiertag) {
        background: #f5f5f5 !important;
        border: 0.5pt solid #e0e0e0 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .tage div.wochenende:not(.ferien):not(.feiertag)::after {
        color: #999 !important;
    }
}

/* ===================================
   Responsive - Tablet
   =================================== */
@media (max-width: 1200px) {
    .jahreskalender {
        grid-template-columns: repeat(2, 1fr);  /* 2er auf kleineren Desktops */
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .download-card {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Responsive - Mobile
   =================================== */
@media (max-width: 768px) {
    .selection-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .selection-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .state-flag {
        width: 100%;
        height: 60px;
    }
    
    .custom-select {
        width: 100%;
        min-width: auto;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .calendar-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    /* Mobile: 2er Grid */
    .jahreskalender {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    
    .monat {
        padding: 14px;
    }
    
    .monat h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .wochentage {
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .wochentage div {
        font-size: 0.7rem;
        padding: 4px 0;
    }
    
    .tage {
        gap: 4px;
    }
    
    .tage div {
        font-size: 0.8rem;
    }
    
    /* Tooltip für Mobile anpassen */
    .tage div[title]:hover::before {
        font-size: 0.75rem;
        padding: 8px 10px;
        max-width: 180px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-list li span {
        text-align: left;
    }
    
    .download-card {
        padding: 24px;
    }
    
    .download-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .monat {
        padding: 12px;
    }
    
    .monat h3 {
        font-size: 0.85rem;
    }
    
    .wochentage div {
        font-size: 0.65rem;
    }
    
    .tage div {
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .download-preview img {
        max-width: 80%;
    }
}



/* ========================================
   CSS-Ergänzungen für Ferien-Übersichtsseiten
   Diese Styles zu deiner styles.css hinzufügen
   ======================================== */

/* Animation für Tabellen-Zeilen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ferien-table tbody tr {
    animation: fadeIn 0.3s ease-in-out;
}

/* Print Styles */
@media print {
    .selection-section,
    .main-header,
    .main-nav,
    .main-footer {
        display: none;
    }

    .ferien-table {
        box-shadow: none;
    }

    .stat-box {
        break-inside: avoid;
    }
}
/* ========================================
   CSS für Feiertage-Übersichtsseiten
   ======================================== */

/* Badges für Bundesweit/Regional */
.bundesweit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.regional-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

/* Responsive Anpassungen für Feiertage-Tabelle */
@media (max-width: 768px) {
    .feiertage-table th,
    .feiertage-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}

/* ===================================
   Allgemeine Tabellen-Styles
   (für Ferien & Feiertage Übersichten)
   =================================== */

/* Container */
.overview-table {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
}

/* Basis-Tabelle */
.overview-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

/* Tabellen-Header mit Farbverlauf */
.overview-table thead {
    background: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    color: white;
}

.overview-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.05em;
}

/* Tabellen-Zellen */
.overview-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Zeilen Hover-Effekt */
.overview-table tbody tr {
    transition: background 0.2s;
    cursor: pointer;
    animation: fadeIn 0.3s ease-in-out;
}

.overview-table tbody tr:hover {
    background: #f8f9ff;
}

.overview-table tbody tr:last-child td {
    border-bottom: none;
}

/* Text-Styling in Tabellen */
.table-title {
    font-weight: 600;
    color: #333;
}

.table-highlight {
    color: #00bfa6;
    font-weight: 500;
}

.table-muted {
    color: #999;
    font-style: italic;
}

.table-secondary {
    color: #555;
    font-size: 0.95em;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge-primary {
    background: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    color: white;
}

.badge-secondary {
    background: #f0f0f0;
    color: #666;
}

/* Statistik-Boxen (bleiben unverändert) */
.ferien-statistik,
.feiertage-statistik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: linear-gradient(135deg, #00bfa6 0%, #007c91 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 73, 150, 0.3);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95em;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    margin: 20px 0 30px 0;
}

.intro-section p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #555;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .overview-table th,
    .overview-table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .stat-number {
        font-size: 2em;
    }

    .stat-label {
        font-size: 0.85em;
    }

    .ferien-statistik,
    .feiertage-statistik {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ferien-statistik,
    .feiertage-statistik {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .overview-table table {
        box-shadow: none;
    }

    .stat-box {
        break-inside: avoid;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   DOWNLOAD-SEITEN CSS - ZU STYLES.CSS HINZUFÜGEN
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Info Box
   =================================== */
.info-box {
    background: linear-gradient(135deg, #f5f0fa 0%, #fef5f5 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.info-box strong {
    color: var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.info-box ul {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0;
}

.info-box ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-dark);
}

.info-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

/* ===================================
   Download Links in Tabelle
   =================================== */
.download-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 6px 14px;
    background: var(--bg-gradient-light);
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.download-link:hover {
    background: var(--gradient);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   Planungskalender Grid
   =================================== */
.planungskalender-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.planer-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.planer-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.planer-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.planer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.planer-actions .btn {
    width: 100%;
}

/* ===================================
   Anleitung-Seiten Styles
   =================================== */
.guide-section {
    margin: 60px 0;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--secondary-color);
}

.guide-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Step Cards */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.step-card {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.step-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.step-content a:hover {
    color: var(--secondary-color);
}

/* Info Box in Anleitung */
.guide-section .info-box h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* CTA Box */
.cta-box {
    background: var(--gradient);
    color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-box .btn {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
}

.cta-box .btn:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

/* ===================================
   Responsive Anpassungen
   =================================== */
@media (max-width: 768px) {
    .planungskalender-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .guide-section h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    /* Download-Tabelle auf Mobile */
    .overview-table {
        font-size: 0.85rem;
    }

    .download-link {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .info-box {
        padding: 16px;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   BUNDESLÄNDER-SEITE CSS - ZU STYLES.CSS HINZUFÜGEN
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Bundesland-Flaggen in Tabelle
   =================================== */
.bundesland-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* ===================================
   Tabellen-Link Styling
   =================================== */
.table-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.table-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* ===================================
   Responsive Anpassungen
   =================================== */
@media (max-width: 768px) {
    .bundesland-flag {
        width: 50px;
        height: 33px;
    }
    
    /* Mobile: Beschreibung-Spalte ausblenden wenn nötig */
    .overview-table th:nth-child(3),
    .overview-table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .bundesland-flag {
        width: 40px;
        height: 27px;
    }
}



/* ═══════════════════════════════════════════════════════════════════
   ALLGEMEINE INFO-SEITEN CSS (Über uns, Impressum, Datenschutz, etc.)
   ZU STYLES.CSS HINZUFÜGEN - ERSETZT ALTE DATENSCHUTZ & ÜBER UNS CSS
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Info-Seiten - Container & Layout
   =================================== */
.info-page-content {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===================================
   Einleitungsparagraph - Hervorgehoben
   =================================== */
.info-page-content .intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--bg-gradient-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

/* Alternative: Erster Absatz automatisch stylen (falls keine Klasse gesetzt) */
.info-page-content > p:first-child {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--bg-gradient-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

/* ===================================
   Überschriften in Info-Seiten
   =================================== */
.info-page-content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

/* Entfernt den zentrierten Unterstrich (falls vorhanden) */
.info-page-content h2::after {
    content: none;
}

.info-page-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* ===================================
   Normale Absätze
   =================================== */
.info-page-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* ===================================
   Links
   =================================== */
.info-page-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.info-page-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===================================
   Listen
   =================================== */
.info-page-content ul {
    list-style: none;
    margin: 20px 0 30px 0;
    padding: 0;
}

.info-page-content ul li {
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 8px;
}

.info-page-content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    top: 8px;
}

/* Nummerierte Listen */
.info-page-content ol {
    margin: 20px 0 30px 0;
    padding-left: 30px;
}

.info-page-content ol li {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 12px;
}

/* ===================================
   Hervorgehobene Boxen (Optional)
   =================================== */
.info-page-content .highlight-box {
    background: var(--bg-gradient-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-page-content .highlight-box p {
    margin-bottom: 12px;
}

.info-page-content .highlight-box p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Kontakt-Informationen
   =================================== */
.info-page-content .contact-info {
    margin: 24px 0;
}

.info-page-content .contact-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* ===================================
   Schlussbemerkung / Stand-Datum
   =================================== */
.info-page-content .closing-note,
.info-page-content .last-updated {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

.info-page-content .closing-note {
    font-style: italic;
    font-size: 1.1rem;
}

.info-page-content .last-updated {
    font-size: 1rem;
}

/* Stand-Datum am Ende (automatisch für letzten Absatz mit <strong>) */
.info-page-content > p:last-of-type {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

/* ===================================
   Tabellen in Info-Seiten (falls benötigt)
   =================================== */
.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.info-page-content table th,
.info-page-content table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.info-page-content table th {
    background: var(--bg-gradient-light);
    color: var(--primary-color);
    font-weight: 600;
}

.info-page-content table tr:hover {
    background: var(--bg-light);
}

/* ===================================
   Responsive Anpassungen
   =================================== */
@media (max-width: 768px) {
    .info-page-content {
        padding: 30px 20px;
        border-width: 1.5px;
    }

    .info-page-content .intro-paragraph,
    .info-page-content > p:first-child {
        font-size: 1.05rem;
        padding: 20px;
    }

    .info-page-content h2 {
        font-size: 1.4rem;
        margin-top: 40px;
    }

    .info-page-content h3 {
        font-size: 1.2rem;
        margin-top: 30px;
    }

    .info-page-content p,
    .info-page-content ul li,
    .info-page-content ol li {
        font-size: 1rem;
        line-height: 1.8;
    }

    .info-page-content ul li {
        padding-left: 30px;
    }

    .info-page-content .closing-note,
    .info-page-content .last-updated {
        font-size: 1.05rem;
        margin-top: 50px;
    }

    .info-page-content > p:last-of-type {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .info-page-content {
        padding: 20px 15px;
        border-width: 1px;
    }

    .info-page-content .intro-paragraph,
    .info-page-content > p:first-child {
        font-size: 1rem;
        padding: 16px;
    }

    .info-page-content h2 {
        font-size: 1.25rem;
        margin-top: 35px;
    }

    .info-page-content h3 {
        font-size: 1.1rem;
    }

    .info-page-content p,
    .info-page-content ul li,
    .info-page-content ol li {
        font-size: 0.95rem;
    }

    .info-page-content ul li {
        padding-left: 25px;
    }

    .info-page-content ul li::before {
        font-size: 1.5rem;
        left: 5px;
    }

    .info-page-content .closing-note,
    .info-page-content .last-updated {
        font-size: 1rem;
        margin-top: 40px;
    }

    .info-page-content > p:last-of-type {
        margin-top: 40px;
    }

    .info-page-content table {
        font-size: 0.85rem;
    }

    .info-page-content table th,
    .info-page-content table td {
        padding: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FERIENDICHTE-SEITEN CSS - ZU STYLES.CSS HINZUFÜGEN
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Jahr-Auswahl Sektion
   =================================== */
.year-selector-section {
    margin: 40px 0;
}

.year-selector-card {
    background: var(--gradient);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 191, 166, 0.3);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.year-selector-card label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jahr-select-dropdown {
    padding: 14px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.jahr-select-dropdown:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: var(--bg-white);
    transform: translateY(-1px);
}

.jahr-select-dropdown:focus {
    outline: none;
    border: 2px solid var(--text-white);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Legende
   =================================== */
.feriendichte-legende {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

.feriendichte-legende h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.legende-gradient-wrapper {
    margin: 24px 0;
}

.legende-gradient-bar {
    height: 50px;
    background: linear-gradient(to right, 
        #009664 0%,      /* Grün: 0 Bundesländer */
        #84cc16 20%,     /* Hellgrün: 1-3 */
        #fbbf24 40%,     /* Gelb: 4-6 */
        #fb923c 60%,     /* Orange: 7-10 */
        #f87171 80%,     /* Hellrot: 11-13 */
        #dc2626 100%     /* Rot: 14-16 */
    );
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.legende-labels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.legende-label-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.legende-label-item:hover {
    background: var(--bg-gradient-light);
    transform: translateY(-2px);
}

.legende-color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legende-label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legende-label-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.legende-label-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===================================
   Statistik Sektion
   =================================== */
.feriendichte-statistik {
    margin: 60px 0;
}

.feriendichte-statistik h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.feriendichte-statistik h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.statistik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-box {
    background: var(--gradient);
    color: var(--text-white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 191, 166, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
}

/* ===================================
   Kalender Grid
   =================================== */
.feriendichte-kalender {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.feriendichte-monat {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feriendichte-monat:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.feriendichte-monat-titel {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.feriendichte-wochentage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.feriendichte-wochentag {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feriendichte-tage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.feriendichte-tag {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.feriendichte-tag:not(.leer):hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feriendichte-tag.leer {
    background: transparent;
}

.feriendichte-tag.wochenende {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
}

/* Feriendichte Farben */
.feriendichte-tag.dichte-0 {
    background: #10b981;
    color: white;
}

.feriendichte-tag.dichte-1 {
    background: #34d399;
    color: white;
}

.feriendichte-tag.dichte-2 {
    background: #6ee7b7;
    color: #065f46;
}

.feriendichte-tag.dichte-3 {
    background: #84cc16;
    color: white;
}

.feriendichte-tag.dichte-4 {
    background: #a3e635;
    color: #365314;
}

.feriendichte-tag.dichte-5 {
    background: #bef264;
    color: #365314;
}

.feriendichte-tag.dichte-6 {
    background: #fde047;
    color: #713f12;
}

.feriendichte-tag.dichte-7 {
    background: #fbbf24;
    color: #78350f;
}

.feriendichte-tag.dichte-8 {
    background: #fb923c;
    color: white;
}

.feriendichte-tag.dichte-9 {
    background: #f97316;
    color: white;
}

.feriendichte-tag.dichte-10 {
    background: #f87171;
    color: white;
}

.feriendichte-tag.dichte-11 {
    background: #ef4444;
    color: white;
}

.feriendichte-tag.dichte-12 {
    background: #dc2626;
    color: white;
}

.feriendichte-tag.dichte-13 {
    background: #b91c1c;
    color: white;
}

.feriendichte-tag.dichte-14 {
    background: #991b1b;
    color: white;
}

.feriendichte-tag.dichte-15 {
    background: #7f1d1d;
    color: white;
}

.feriendichte-tag.dichte-16 {
    background: #450a0a;
    color: white;
}

/* ===================================
   Tooltip
   =================================== */
.feriendichte-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.92);
    color: var(--text-white);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 10000;
    white-space: nowrap;
    display: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    max-width: 300px;
}

.feriendichte-tooltip.show {
    display: block;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .feriendichte-kalender {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .year-selector-card {
        flex-direction: column;
        padding: 24px;
    }

    .jahr-select-dropdown {
        width: 100%;
        min-width: auto;
    }

    .legende-labels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .statistik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .feriendichte-kalender {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feriendichte-monat {
        padding: 16px;
    }

    .feriendichte-monat-titel {
        font-size: 1.05rem;
    }

    .feriendichte-wochentag {
        font-size: 0.7rem;
    }

    .feriendichte-tag {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .legende-labels-grid {
        grid-template-columns: 1fr;
    }

    .statistik-grid {
        grid-template-columns: 1fr;
    }

    .feriendichte-kalender {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feriendichte-monat {
        padding: 14px;
    }

    .feriendichte-monat-titel {
        font-size: 0.95rem;
    }

    .feriendichte-wochentag {
        font-size: 0.65rem;
    }

    .feriendichte-tag {
        font-size: 0.8rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .year-selector-section,
    .main-header,
    .main-nav,
    .hero-section,
    .main-footer {
        display: none;
    }

    .feriendichte-kalender {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .feriendichte-monat {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .stat-box {
        break-inside: avoid;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   GOOGLE ADSENSE SIDE ADS - ZU STYLES.CSS HINZUFÜGEN
   Ads im Content-Bereich, zwischen Hero und Footer
   ═══════════════════════════════════════════════════════════════════ */

/* ===================================
   Content Layout mit Ads
   =================================== */
.content-with-ads {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* ===================================
   Hauptinhalt Bereich
   =================================== */
.main-content-area {
    min-width: 0; /* Verhindert Overflow */
    width: 100%;
}

/* ===================================
   Sidebar Ads
   =================================== */
.sidebar-ad {
    width: 220px;
    position: relative;
}

/* Sticky Wrapper für Ads */
.ad-sticky {
    position: sticky;
    top: 100px; /* Abstand von oben beim Scrollen */
    width: 220px;
}

/* AdSense Box Styling */
.sidebar-ad .adsbygoogle {
    display: inline-block !important;
    width: 220px !important;
    height: 700px !important;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ===================================
   Linke und Rechte Positionierung
   =================================== */
.sidebar-left {
    grid-column: 1;
}

.sidebar-right {
    grid-column: 3;
}

.main-content-area {
    grid-column: 2;
}

/* ===================================
   Responsive Design - Breakpoints
   =================================== */

/* Sehr große Bildschirme: Beide Ads + Content */
@media (min-width: 1900px) {
    .content-with-ads {
        grid-template-columns: 220px minmax(900px, 1200px) 220px;
        justify-content: center;
        max-width: 1700px;
        margin: 0 auto;
    }
}

/* Große Bildschirme: Beide Ads sichtbar */
@media (min-width: 1650px) and (max-width: 1899px) {
    .content-with-ads {
        grid-template-columns: 220px 1fr 220px;
        gap: 25px;
    }
}

/* Mittlere Bildschirme: Nur rechte Ad */
@media (min-width: 1400px) and (max-width: 1649px) {
    .content-with-ads {
        grid-template-columns: 1fr 220px;
        gap: 25px;
    }
    
    .sidebar-left {
        display: none;
    }
    
    .main-content-area {
        grid-column: 1;
    }
    
    .sidebar-right {
        grid-column: 2;
    }
}

/* Tablet/Mobile: Keine Side Ads */
@media (max-width: 1399px) {
    .content-with-ads {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sidebar-ad {
        display: none;
    }
    
    .main-content-area {
        grid-column: 1;
    }
}

/* ===================================
   Mobile Banner Ad (Optional)
   =================================== */
.adsense-mobile-banner {
    display: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

/* Zeige Mobile Banner nur auf kleinen Bildschirmen */
@media (max-width: 1399px) {
    .adsense-mobile-banner {
        display: block;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1399px) {
    .adsense-mobile-banner {
        margin: 40px auto;
        max-width: 728px;
    }
}

/* Mobile Portrait */
@media (max-width: 767px) {
    .adsense-mobile-banner {
        margin: 20px 0;
        padding: 16px;
    }
    
    .adsense-mobile-banner .adsbygoogle {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===================================
   Sticky Behavior Anpassungen
   =================================== */

/* Verhindere Überlappung mit Footer */
@media (min-width: 1400px) {
    .main-footer {
        clear: both;
        margin-top: 80px;
    }
}

/* Ads stoppen am Ende des Content */
.ad-sticky::after {
    content: '';
    display: block;
    height: 1px;
}

/* ===================================
   Print: Ads ausblenden
   =================================== */
@media print {
    .content-with-ads {
        grid-template-columns: 1fr !important;
    }
    
    .sidebar-ad,
    .adsense-mobile-banner {
        display: none !important;
        visibility: hidden !important;
    }
    
    .main-content-area {
        grid-column: 1 !important;
    }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .ad-sticky {
        position: static;
    }
}

/* ===================================
   Loading State für Ads
   =================================== */
.sidebar-ad .adsbygoogle:empty::before {
    content: 'Anzeige wird geladen...';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* ===================================
   Container Anpassungen für bestehende Styles
   =================================== */

/* Stelle sicher, dass bestehende Sections nicht brechen */
.main-content-area .selection-section,
.main-content-area .jahreskalender,
.main-content-area .calendar-actions,
.main-content-area .info-section,
.main-content-area .download-section {
    width: 100%;
    max-width: 100%;
}

/* Kalender Grid bleibt im Content */
.main-content-area .jahreskalender {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .main-content-area .jahreskalender {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-content-area .jahreskalender {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}