/* Cookie Banner Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.cookie-banner h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.cookie-banner p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-categories {
    text-align: left;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
}

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

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
}

.cookie-category p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.cookie-toggle {
    float: right;
    margin-top: -25px;
}

.cookie-toggle input[type="checkbox"] {
    margin-right: 5px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn.save-preferences {
    background-color: #007bff;
    color: white;
}

.cookie-btn.save-preferences:hover {
    background-color: #0056b3;
}

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

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

.cookie-links {
    margin-top: 20px;
    font-size: 12px;
}

.cookie-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Hide content until cookie consent is given */
.content-blocked {
    display: none;
}

/* Show content after consent */
.content-visible {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 10px;
    }
} 

.cookie-heading {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.cookie-subheading {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
} 