﻿/*notifications*/

.notification {
    position: fixed;
    top: 100px;
    right: -350px;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    z-index: 1000;
    transition: right 0.5s ease-in-out;
    background: rgba(34, 139, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.notification-success {
    background-color: rgba(40, 167, 69, 0.8);
    color: #ffffff;
}

.notification-error {
    background-color: rgba(220, 53, 69, 0.8);
    color: #ffffff;
}

.notification-warning {
    background-color: rgba(255, 193, 7, 0.8);
    color: #000000;
}

.show-notification {
    right: 20px;
}
