@charset "utf-8";
/* COOKIES */
#cookievalid {
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 1em; /* Um 1em nach oben verschoben */
    z-index: 10000;
    width: 100%; /* Breite */
    left: 0; /* Nach links verschoben */
    font-family: Lato;
    font-weight: 300;
    font-size: 1em;
    line-height: 2em;
}

#cookievalid div {
    padding: 0 0.8em; /* Padding oben/unten hinzugefügt */
    margin: 2em; /* Rand von 2em um den Text und Closer */
    background: #2f2f2f; /* Hintergrundfarbe geändert */
    border: 1px solid #000; /* 1px Border hinzugefügt */
    border-radius: 6px; /* Ecken abgerundet */
    display: inline-block; /* Inline-Block für die gesamte Breite */
}

#cookievalid a {
    color: #fff;
    text-decoration: none; /* Keine Unterstreichung */
}

#cookievalid a:hover {
    color: #727171; /* Hover-Farbe für Links */
}

#cookievalidCloser {
    font-size: 1em;
    color: #fff;
    margin-left: 0.5em; /* Kleiner Abstand zum Text */
    cursor: pointer;
    background: transparent;
    display: inline; /* Damit es im Fluss des Textes bleibt */
}

/* Hover-Farbe für das Löschkreuz */
#cookievalidCloser:hover {
    color: #000; /* Hover-Farbe für das Löschkreuz */
}

/* Media Queries */
@media screen and (max-width: 768px) {
    #cookievalid {
        font-size: 0.9em; /* Kleinere Schriftgröße für Tablets */
    }

    #cookievalid div {
        margin: 1.5em; /* Weniger Rand auf Tablets */
    }
}

@media screen and (max-width: 480px) {
    #cookievalid {
        font-size: 0.8em; /* Noch kleinere Schriftgröße für Handys */
    }

    #cookievalid div {
        margin: 1em; /* Weniger Rand auf Handys */
    }
}
