html, body {
    overflow-x: hidden; /* Verhindert horizontales Scrollen auf der gesamten Seite */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border zur Größe des Elements zählen */
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background: #ffffff;
    padding: 15px 30px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten für bessere Sichtbarkeit */
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert p {
    margin: 0;
    font-size: small;
}

.cookiealert a {
    text-decoration: underline;
    font-size: small;
    color: #000099; /* Linkfarbe */
}

.button-container {
    margin-top: 15px;
    display: flex;
    gap: 10px; /* Abstand zwischen den Buttons */
}
