#notification-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    z-index: 1000;
}

.notification {
    background-color: #FF4600;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.notification.active {
    transform: translateY(0);
    opacity: 1;
}

@keyframes slideUpFadeIn {
    to {
        bottom: 10px;
        opacity: 1;
    }
}

.notification.hide {
    animation: slideDownFadeOut 1s forwards;
}

@keyframes slideDownFadeOut {
    to {
        bottom: -100px;
        opacity: 0;
    }
}

/* Остальные стили остаются неизменными */

.notification p {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.notification .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 18px;
    color: #6d6d6d;
    border: none;
    background: none;
}

.notification .close-btn:hover {
    color: #cecdcd;
}