/* Cookie Consent Styling */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 25px;
    z-index: 9999;
    display: none;
    font-size: 14px;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

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

.cookie-settings-panel {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.cookie-settings-panel.show {
    display: block;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

.cookie-option label {
    font-weight: 600;
    color: #333;
}

.cookie-option p {
    margin-top: 5px;
    margin-left: 25px;
    font-size: 13px;
    color: #666;
}

.cookie-settings-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

/* Responsive Design for Cookie Consent */
@media (max-width: 480px) {
    .cookie-consent {
        max-width: calc(100% - 40px);
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-settings-buttons button {
        width: 100%;
    }
}
