/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    display: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-content {
    padding: 20px;
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #666;
}

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

.cookie-settings-panel {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.cookie-settings-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.cookie-settings-options {
    margin-bottom: 20px;
}

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

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

.cookie-option label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.85rem;
    margin: 5px 0 0 25px;
    color: #777;
}

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

.cookie-settings-buttons {
    text-align: right;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-content, 
    .cookie-settings-panel {
        padding: 15px;
    }
    
    .cookie-content h3,
    .cookie-settings-panel h3 {
        font-size: 1rem;
    }
    
    .cookie-content p,
    .cookie-option p {
        font-size: 0.8rem;
    }
}
