/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    display: none;
    /* Hidden by default */
    border-top: 4px solid var(--color-primary, #0094D1);
    box-sizing: border-box;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-cookie-accept {
    background-color: var(--color-primary, #0094D1);
    color: white;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background-color: #6c757d;
    color: white;
}

.btn-cookie-reject:hover {
    background-color: #5a6268;
}

.btn-cookie-settings {
    background-color: #f0f0f0;
    color: #333;
}

.btn-cookie-settings:hover {
    background-color: #e0e0e0;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-text {
        flex: 1;
        padding-right: 20px;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}