

.notifications {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 150;
    pointer-events: none;
}

.notification {
    width: fit-content;
    min-width: 200px;
    max-width: 600px;
    height: fit-content;
    color: white;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
}

.notifications-error {
    background-color: #f44336;
    box-shadow: 0 0 100px 2px #f44336;
}

.notifications-success {
    background-color: #4caf50;
    box-shadow: 0 0 100px 2px #4caf50;
}

.notifications-warning {
    background-color: #ff9800;
    box-shadow: 0 0 100px 2px #ff9800;
}

.notifications-info {
    background-color: #2196f3;
    box-shadow: 0 0 100px 2px #2196f3;
}
