#notify {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notify {
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 0.5s forwards;
    -webkit-box-shadow: 4px 11px 24px -20px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 11px 24px -20px rgba(0,0,0,0.75);
    box-shadow: 4px 11px 24px -20px rgba(0,0,0,0.75);
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: opacity 0.5s, transform 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}


.notify.fade-out {
    animation: fadeOut 0.5s forwards;
}
/* --- injected clearfix (WaybackScraper) --- */
.clearfix::after{content:"";display:table;clear:both}
.clearfix{display:block}
