/* =========================
   WBF Cookie Banner – Frontend CSS v1.1.10
   ========================= */

/* Grundstruktur */
#wbf-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 85%;
    width: 85%;
    max-height: 30vh;
    background-color: #252525; /* Standard dunkel */
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 99999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    text-align: center;
}

/* Banner-Headline */
#wbf-cookie-banner h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #ffffff;
}

/* Bannertext */
#wbf-cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
    margin: 5px 0 15px 0;
}

/* Buttons-Container */
#wbf-cookie-banner .wbf-cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
#wbf-cookie-banner .wbf-cookie-buttons button {
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Akzeptieren / Primary */
#wbf-cookie-banner .wbf-accept {
    background-color: #98e700; /* Limegreen dunkel */
    color: #151515;
}

#wbf-cookie-banner .wbf-accept:hover {
    background-color: #7fb400;
}

/* Ablehnen / Secondary */
#wbf-cookie-banner .wbf-decline {
    background-color: #151515; /* Dunkel */
    color: #ffffff;
}

#wbf-cookie-banner .wbf-decline:hover {
    background-color: #222222;
}

/* Powered by Text */
#wbf-cookie-banner .wbf-powered {
    font-size: 12px;
    margin-top: 10px;
    color: #ffffff;
    text-align: center;
}

/* Logos */
#wbf-cookie-banner .wbf-logo-top {
    display: block;
    max-height: 50px;
    margin-bottom: 10px;
}

#wbf-cookie-banner .wbf-logo-bottom {
    display: block;
    max-height: 30px;
    margin-top: 10px;
}

/* =========================
   Mobile Anpassungen
   ========================= */
@media screen and (max-width: 768px) {
    #wbf-cookie-banner {
        width: 90%;
        max-height: 35vh;
        border-radius: 15px;
        padding: 15px;
    }

    #wbf-cookie-banner h2 {
        font-size: 16px;
    }

    #wbf-cookie-banner p {
        font-size: 12px;
    }

    #wbf-cookie-banner .wbf-cookie-buttons button {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 12px;
    }

    #wbf-cookie-banner .wbf-powered {
        font-size: 10px;
        margin-top: 5px;
    }

    #wbf-cookie-banner .wbf-logo-top {
        max-height: 35px;
    }

    #wbf-cookie-banner .wbf-logo-bottom {
        max-height: 20px;
    }
}
