#notifions_panel{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(90dvh - 20px);
}

#notifions_panel .notification {
    display: flex;;
    gap: 10px;
    padding: 15px;
    background-color: #f44336;
    color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 0;
}

#notifions_panel .notification-close {
    color: white;
    font-weight: bold;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none;
}
