﻿.cookie-consent-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
}

    .cookie-consent-overlay.cookie-consent-visible {
        opacity: 1;
        visibility: visible;
    }

.cookie-consent-box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-text {
    color: #333;
}

    .cookie-consent-text strong {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        margin: 0;
        line-height: 1.4;
    }

.cookie-consent-links a {
    color: #333;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-button {
    border: 0;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

.cookie-consent-primary {
    background: #111;
    color: #fff;
}

.cookie-consent-secondary {
    background: #eee;
    color: #222;
}

@media (max-width: 700px) {
    .cookie-consent-box {
        display: block;
    }

    .cookie-consent-actions {
        margin-top: 1rem;
        display: block;
    }

    .cookie-consent-button {
        width: 100%;
        margin-top: 0.5rem;
    }
}
