/* style/cookie_consent.css */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #dfe1e6;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Open Sans', sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

#cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    max-width: 800px;
}

.cookie-content h4 {
    margin: 0 0 8px 0;
    color: #172b4d;
    font-size: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #42526e;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.btn-accept {
    background-color: #0052cc;
    color: white;
}

.btn-accept:hover {
    background-color: #0747a6;
}

.btn-reject {
    background-color: #ebecf0;
    color: #42526e;
}

.btn-reject:hover {
    background-color: #dfe1e6;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}