/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
    display: none;
    border-top: 1px solid #dee2e6;
}

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

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #212529;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.accept-all-btn {
    background-color: #28a745;
    color: white;
}

.accept-all-btn:hover {
    background-color: #218838;
}

.reject-btn {
    background-color: #dc3545;
    color: white;
}

.reject-btn:hover {
    background-color: #c82333;
}

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

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

.cookie-settings {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.cookie-settings-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-setting-item label {
    margin-left: 8px;
    font-size: 14px;
}

.necessary-cookie {
    opacity: 0.7;
}

.necessary-cookie input {
    pointer-events: none;
}

.save-preferences-btn {
    background-color: #007bff;
    color: white;
    margin-top: 10px;
}

.save-preferences-btn:hover {
    background-color: #0069d9;
}

.privacy-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}