/* Стили для уведомления */
.notification {
    color: white;
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 20px; /* Перемещаем уведомление наверх */
    left: 50%;
    transform: translateX(-50%);
    background-color: #007A7A; /* Цвет фона уведомления */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s;
}