/* styles.css */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #f0f0f0;
    text-align: center;
    z-index: 9999;
}

.cookie-consent a {
    color: #000;
    text-decoration: underline;
}

/* Изменения для кнопки "Принять" */
.cookie-consent button {
    background-color: yellow; /* Желтый цвет фона */
    color: black; /* Цвет текста */
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}