﻿.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.min-height-container {
    min-height: 500px;  /* Aumentado desde 300px */
}

.bouncing-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .bouncing-dots div {
        width: 12px;
        height: 12px;
        background-color: #007bff;
        border-radius: 50%;
        animation: bounce 0.5s alternate infinite;
    }

        .bouncing-dots div:nth-child(2) {
            animation-delay: 0.15s;
        }

        .bouncing-dots div:nth-child(3) {
            animation-delay: 0.3s;
        }

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.spinner-container span {
    margin-top: 15px;
    color: #666;
    font-size: 1rem;
}
