.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Feine Linien Animation für Links */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Map Desaturation */
.map-silver .leaflet-tile-pane {
    filter: grayscale(100%) contrast(0.9) brightness(1.1);
}

/* =========================================
   Christmas Overlay Styles
   ========================================= */

.christmas-garland-container {
    position: fixed;
    top: -5px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.christmas-garland-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

/* Styles für das Dialog-Element selbst */
.christmas-dialog {
    /* Festliche Farben */
    background-color: #8b0000; /* Ein tiefes Weihnachtsrot */
    color: #fffadd; /* Ein cremiges Weiß für den Text */
    border: 2px solid #d4af37; /* Goldener Rand */
    border-radius: 12px;
    padding: 0; /* Padding wird innen geregelt */
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    max-width: 500px;
    width: 90%;

    /* Startzustand für die Animation */
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Zustand wenn das Dialog geöffnet ist */
.christmas-dialog[open] {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Das Abdunkeln des Hintergrunds */
.christmas-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* Optional: macht den Hintergrund unscharf */
}

/* Inhalt Container */
.dialog-content {
    padding: 30px;
    position: relative;
}

/* Schließen Button oben rechts */
#close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #d4af37; /* Gold */
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s, color 0.2s;
}

#close-popup:hover {
    color: white;
    transform: rotate(90deg);
}

/* Hilfsklassen für Farben (falls nicht schon in deinem CSS vorhanden) */
.text-gold { color: #d4af37; }
.text-cream { color: #fffadd; }