#notAvailable
{
    min-height: 80vh;
}

#notAvailable .icon-container svg
{
    color: #0d6efd;
    animation: float 3s ease-in-out infinite;
}

#notAvailable .fade-in
{
    animation: fadeIn 0.8s ease-out;
}

#notAvailable .bounce
{
    animation: bounce 1s infinite alternate;
    margin-top: 20px;
}

/* Keyframes */
@keyframes fadeIn
{
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float
{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce
{
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
