#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    display: flex;
    align-items: center;
    min-width: 274px;
    margin-top: 22px;
    padding: 46px 21px;
    border-radius: 4px;
    background: #eeeeeedb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-icon {
    font-size: 20px;
}

.notification-success .notification-icon {
    color: #4CAF50;
}

.notification-error .notification-icon {
    color: #f44336;
}

.notification-message {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
