.custom-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none; /* Скрыто по умолчанию, показывается через JS */
    flex-direction: column;
    align-items: flex-start;
    width: 250px;
    animation: slideIn 0.5s ease-out;
}

.custom-notification p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.custom-notification .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    align-self: flex-end;
    padding: 0 5px;
    margin-top: 5px;
}

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}