﻿/* Контейнер уведомлений */
.notifications-container {
    position: fixed;
    top: 120px; /* отступ сверху можно регулировать */
    right: 20px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Стили для уведомления */
.notification {
    position: relative;
    background-color: #f0f0f0;
    color: #333;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    /* Кнопка закрытия (крестик) */
    .notification .close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        background: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: inherit;
    }
