@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        
body {
    font-family: 'Poppins', sans-serif;
}

.alert-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: auto;
    max-width: 420px;
    z-index: 1000;
}

@media (max-width: 640px) {
    .alert-container {
        width: calc(100% - 2rem);
        max-width: 100%;
        left: 1rem;
        right: 1rem;
        top: 1rem;
    }
}

.alert-message {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.95;
}

.alert-message:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@keyframes bounce {
0%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
}
40% {
    transform: translateY(-20px) rotate(45deg);
}
}

.dot-1 {
animation: bounce 1.2s infinite;
animation-delay: 0s;
}

.dot-2 {
animation: bounce 1.2s infinite;
animation-delay: 0.2s;
}

.dot-3 {
animation: bounce 1.2s infinite;
animation-delay: 0.4s;
}