#cookie-consent-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #cbd5e1;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
    z-index: 9999;
}
#cookie-consent-banner.active {
    display: block;
}
.cookie-consent-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 18px 24px;
}
.cookie-consent-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}
.cookie-consent-text {
    margin: 0.35rem 0 0;
    color: #475569;
    max-width: 620px;
    line-height: 1.6;
}
.cookie-consent-link {
    color: #0d6efd;
    text-decoration: none;
}
.cookie-consent-actions button {
    min-width: 115px;
}
@media (max-width: 767px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent-actions {
        justify-content: flex-start;
    }
}
