#notification-container {
    position: fixed;
    top: 114px;
    right: 20px;
    z-index: 1001;
}

.notification {
    min-width: 220px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 18px;
    background: rgba(35, 24, 31, 0.94);
    color: #fff;
    box-shadow: 0 16px 36px rgba(35, 24, 31, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

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

@media (max-width: 640px) {
    #notification-container {
        top: 98px;
        right: 12px;
        left: 12px;
    }

    .notification {
        min-width: 0;
    }
}
