.floating-notice {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9999;
    background-color: #ffac00;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    animation: slide-in 0.4s ease, fade-out 0.5s ease 9s forwards;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-out {
    to {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
}
