﻿/* custom.css */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
    word-wrap: break-word;
    animation: slideOut 4s forwards;
}

.notification:hover {
    background-color: #e0a800;
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(50px);
    }
}