#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-banner-inner {
    background: #ffffff;
    color: #111827;
    max-width: 640px;
    width: 100%;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-actions button {
    border-radius: 999px;
    border: none;
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    cursor: pointer;
}

#cookie-accept {
    background: #111827;
    color: #ffffff;
}

#cookie-reject {
    background: #e5e7eb;
    color: #111827;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        padding: 0.75rem 1rem;
    }
}