
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 20px;
    z-index: 1001;
    border-top: 1px solid #ccc;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.cookie-banner-content {
    max-width: 960px;
    margin: 0 auto;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-header h3 {
    margin: 0;
    font-size: 18px;
}

.language-selector .flag-icon {
    width: 24px;
    height: auto;
    margin-left: 8px;
    border: 1px solid #ccc;
}

.cookie-body p {
    margin-bottom: 20px;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
}

.cookie-category-header input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-category-description {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.cookie-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cookie-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#decline-cookies {
    background-color: #ddd;
}

#save-cookie-prefs {
    background-color: #007bff;
    color: white;
}

#accept-cookies {
    background-color: #28a745;
    color: white;
}
