/* Cookie Consent Banner Styles */

.CookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    background-color: #fff; 
}

.CookieConsent.is-visible {
    transform: translateY(0);
}

.CookieConsent-banner {
    position: relative;
}

.CookieConsent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 768px;
    margin: 0 auto;
}

.CookieConsent-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .5rem;
    background: transparent;
    border: none;
    padding: .25rem .5rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.CookieConsent-close:hover,
.CookieConsent-close:focus {
    opacity: 1;
}

.CookieConsent-text {
    flex: 1;
    margin: 0;
    padding-right: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .CookieConsent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .CookieConsent-text {
        padding-right: 2rem;
    }

    .CookieConsent-accept {
        width: 100%;
    }

    .CookieConsent-close {
    position: absolute;
    top: 1.5rem;
    right: .5rem;
}
}

