/* static/css/components/cookies.css */

.warning {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(177, 177, 177, 0.8);
    font-size: 0.8rem;
    z-index: 9999;
}

.warning--active {
    display: flex;
}

.warning__text {
    margin-right: 20px;
    text-align: center;
}

.warning__text a {
    color: #0066cc;
    text-decoration: underline;
}

.warning__apply {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.warning__apply:hover {
    background-color: #444;
}

.warning__apply:active {
    background-color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .warning {
        flex-direction: column;
        padding: 15px;
    }
    
    .warning__text {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
}