.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.cookie-consent p {
    margin: 0 auto 15px auto;
    max-width: 800px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.cookie-consent button {
    background-color: #2196F3; /* Синий цвет */
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cookie-consent button:hover {
    background-color: #ff0000; /* Красный при наведении */
}

/* Для мобильных устройств */
@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .cookie-consent button {
        padding: 10px 30px;
        font-size: 14px;
    }
}
