#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-buttons {
    display: inline-block;
    margin-left: 20px;
}

.cookie-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

.cookie-button:active {
    transform: translateY(1px);
}

#cookie-learn-more {
    background: #555;
}

#cookie-learn-more:hover {
    background: #666;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    #cookie-notification {
        padding: 10px;
    }
    
    .cookie-content {
        display: block;
    }
    
    .cookie-buttons {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .cookie-button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
