/* Стили для уведомления о cookies */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1150;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-notification.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-accept:hover {
    background-color: #45a049;
}

.cookie-reject {
    background-color: #f44336;
    color: white;
}

.cookie-reject:hover {
    background-color: #d32f2f;
}

.cookie-settings {
    background-color: #2196F3;
    color: white;
}

.cookie-settings:hover {
    background-color: #0b7dda;
}

.cookie-link {
    color: #90CAF9;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #64B5F6;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        text-align: center;
    }
}

/* Стили для модального окна настроек cookies */
.cookie-settings-modal-content {
    display: none;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

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

.cookie-option {
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

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

.cookie-desc {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 0 25px;
}

.cookie-settings-buttons {
    text-align: center;
    margin-top: 20px;
}