﻿.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 16px;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-text p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.cookie-consent-text a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cookie-modal {
    width: min(640px, 100%);
    background: #ffffff;
    color: #111827;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-option {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .cookie-option p {
        margin: 4px 0 0;
        color: #6b7280;
        font-size: 0.95rem;
    }

    .cookie-option input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-top: 4px;
    }

.cookie-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
