/* static/css/cookie-consent.css — GDPR cookie consent banner */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #141414;
    border-top: 1px solid #333;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    font-size: 0.8125rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: #6366f1;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #6366f1;
    border: none;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #5558e6;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid #333;
    color: #888;
}

.cookie-btn-reject:hover {
    border-color: #888;
    color: #fff;
}

@media (max-width: 640px) {
    #cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
}
