@charset "utf-8";
/* CSS Document */

#cookie_banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    max-width: 90%;
    background-color: #ffffff;
    color: #333333;
    z-index: 10000;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    border-top: 5px solid #00579D; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box; /* Wichtig für korrektes Padding */
}

/* Die Überschrift */
#cookie_banner .banner_title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Der Text */
#cookie_banner .banner_text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555555;
}

/* Der Link zur Datenschutzerklärung */
#cookie_banner .banner_link {
    color: #00579D;
    text-decoration: underline;
    font-weight: 500;
}

#cookie_banner .banner_link:hover {
    color: #333;
}

/* Der Button */
.btn_banner_accept {
    display: block;
    width: 100%;
    background-color: #00579D;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.btn_banner_accept:hover {
    background-color: #333;
}

/* Hilfsklasse zum Ausblenden */
.cookie_banner_hide {
    display: none !important;
}

/* Optimierung für kleine Handys */
@media (max-width: 480px) {
    #cookie_banner {
        left: 5%;
        right: 5%;
        bottom: 20px;
        width: 90%;
        padding: 20px;
    }
}