/* =================================
   Cookie Consent Banner (Verze 3 - Univerzální)
   ================================= */

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%); 
    background-color: #212529;
    color: #f8f9fa;
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 1rem; 
    z-index: 1060; 
    transition: transform 0.5s ease-in-out;
}

.consent-banner.visible {
    transform: translateY(0);
}

/* === ZMĚNA ZDE: Cílíme na <main>, ne na <body> === */
main.consent-banner-visible {
    /* Přidá odsazení dolů, aby lišta nepřekryla patičku */
    padding-bottom: 100px; 
    transition: padding-bottom 0.5s ease-in-out;
}

.consent-banner-text p {
    margin: 0;
    font-size: 0.9rem;
}

.consent-banner-text a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: underline;
}

.consent-banner-text a:hover {
    color: #f0f0f0;
}

#consent-accept {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
}

@media (max-width: 767.98px) {
    .consent-banner {
        flex-direction: column;
        text-align: center;
    }
    
    #consent-accept {
        width: 100%;
    }
}