﻿/* CSS för laddningsanimation */
.loading-dots {
    text-align: center;
    margin-top: 10px;
}

    .loading-dots span {
        display: inline-block;
        animation: bounce 1.4s infinite ease-in-out both;
        font-size: 3.5em; /* Justera storleken */
        color: #007bff; /* Färg på punkterna */
    }

        .loading-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}
