/* Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 80%);
    border-top: 1px solid #ddd;
    padding: 16px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, .1);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: #116f9d;
    color: #fff;
    border: none;
}

.btn-secondary {
    background: #f3f4f6;
    color: #000000;
    border: none;
}

.btn-link {
    background: none;
    border: none;
    color: #116f9d;
    text-decoration: underline;
}

/* Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    max-width: 420px;
    width: 100%;
}

.cookie-modal-content h2 {
    margin-top: 0;
}

.cookie-modal-content label {
    display: block;
    margin: 10px 0;
}

.note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

.inline {
    display: inline-block;
}

.hidden {
    display: none;
}