.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-notice p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cookie-link {
    color: var(--color-primary);
    text-decoration: underline;
}

#accept-cookies {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}
