/* satellite.css */
#historia-[session_id] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
/* Contenedor que posiciona al satélite en el centro de la pantalla */
#satellite-container {
    position: absolute;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
}

/* Estilo del satélite */
#satellite {
    width: 30px;
    height: 30px;
    background-color: #3498db; /* Azul */
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(59, 130, 246, 0.6); /* Sombra */
    position: absolute;
    animation: rotate 5s infinite linear;
}

/* Estilo de la órbita del satélite */
#satellite-orbit {
    width: 200px;
    height: 200px;
    /*border: 2px dashed rgba(255, 255, 255, 0.6); /*Órbita discontinua */
    border-radius: 50%;
    position: absolute;
    animation: rotateOrbit 8s infinite linear;
}

/* Animación de rotación del satélite */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Animación de la órbita */
@keyframes rotateOrbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotateContainer {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

