.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-button.accept {
    background-color: #e74c3c;
    color: white;
}

.cookie-button.accept:hover {
    background-color: #c0392b;
}

.cookie-button.settings {
    background-color: #f1f1f1;
    color: #333;
}

.cookie-button.settings:hover {
    background-color: #ddd;
}

.cookie-button.save {
    background-color: #2ecc71;
    color: white;
}

.cookie-button.save:hover {
    background-color: #27ae60;
}

/* Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cookie-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.cookie-close:hover {
    color: #333;
}

.cookie-options {
    margin: 20px 0;
}

.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: bold;
    margin-left: 8px;
}

.cookie-option p {
    margin: 5px 0 0 25px;
    color: #666;
    font-size: 14px;
}

.cookie-modal-buttons {
    text-align: right;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 5% auto;
    }
}
