/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-banner.show {
    display: flex;
}

.cookie-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-top: 4px solid #0066cc;
}

.cookie-logo {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-logo img {
    max-width: 200px;
    height: auto;
}

.cookie-header {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
}

.cookie-content p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.6;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: white;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-necessary {
    background: #f0f0f0;
    color: #333;
}

.btn-necessary:hover {
    background: #e0e0e0;
}

.btn-settings {
    background: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.btn-settings:hover {
    background: #f0f7ff;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.cookie-option label {
    display: block;
    cursor: pointer;
    font-weight: 500;
}

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-description {
    margin: 5px 0 0 25px;
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-content,
    .cookie-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}