.construction {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .construction-container {
    max-width: 600px;
    padding: 20px;
    border: 2px dashed #0078D7; /* Un borde para destacar el área */
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .construction h1 {
    font-size: 2rem;
    color: #0078D7; /* Azul para el encabezado */
    margin-bottom: 10px;
  }
  
  .construction p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
  }
  
  .loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #0078D7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  