    /* Estilos para la pantalla de carga */
    #loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5); /* fondo negro con transparencia */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }
  
      /* Spinner estilo simple */
      .spinner {
        width: 50px;
        height: 50px;
        border: 6px solid #dfdfdf;
        border-top: 6px solid #3B4B66;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }
  
      /* Animación del spinner */
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }