
#muestromsgflota {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: msgflota-fadeIn 0.3s ease forwards;
    opacity: 0;
}

@keyframes msgflota-fadeIn {
    to { opacity: 1; }
}

/* Card container for spinner + message */
#muestromsgflota .module-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

#muestromsgflota .module-spinner > div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: msgflota-bounce 1.4s infinite ease-in-out both;
}
#muestromsgflota .module-spinner > div:nth-child(1) { animation-delay: -0.32s; }
#muestromsgflota .module-spinner > div:nth-child(2) { animation-delay: -0.16s; }
#muestromsgflota .module-spinner > div:nth-child(3) { animation-delay: 0s; }

@keyframes msgflota-bounce {
    0%, 80%, 100% { transform: scale(0.4); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

#muestromsgflota_msgaki {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    text-align: center;
}
