#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 34, 0, 0.9);
    color: var(--sand-50);
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-size: 0.9rem;
}

body.light #cookie-banner {
    background: rgba(246, 243, 239, 0.95);
    color: var(--charcoal-900);
}

#cookie-banner button {
    background: var(--avocado-700, #88A828);
    color: var(--sand-50);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

#cookie-banner button.secondary {
    background: transparent;
    border: 1px solid currentColor;
}

#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

#cookie-modal .modal-content {
    background: var(--sand-50);
    color: var(--charcoal-900);
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#cookie-modal .modal-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

#cookie-banner .banner-actions {
    display: flex;
    gap: 0.5rem;
}