

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 10px 20px;
}


.contenedor-principal {
    margin-top: 85px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    width: 100vw;
    height: calc(100vh - 120px); /* Altura fija relativa */
    box-sizing: border-box;
}

.contenido-scroll {
    width: 100%;
    height: 100%; /* Llena todo el contenedor */
    overflow-y: auto; /* Scroll solo aquí */
    background-color: white;
    border-radius: 0px;
    padding: 0px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}


/* Contenedor del logo y nombre de la empresa */
.logo-container {
    position: fixed; /* Fijo en la parte superior */
    top: 8px; /* Ajusta el margen superior */
    left: 50%; /* Centra el contenedor */
    transform: translateX(-50%); /* Centra el contenedor de manera exacta */
    display: flex;
    justify-content: flex-start; /* Alinea el logo y nombre hacia la izquierda */
    align-items: center; /* Centra el logo y nombre verticalmente */
    z-index: 1000; /* Asegura que esté por encima del menú */
}

/* Ajuste del logo (imagen) */
.logo-container img {
    width: 40px; /* Tamaño del logo */
    height: auto; /* Mantener las proporciones */
}

/* Estilo para el nombre de la empresa */
.nombreempresa {
    font-size: 16px; /* Tamaño adecuado para el texto */
    color: #333; /* Color oscuro */
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 8px; /* Separación entre el logo y el nombre */
    white-space: nowrap; /* Evitar que el texto se divida en varias líneas */
}



/* El menú debe estar debajo del logo, siempre fijo en la parte superior */
.menu {
    background-color: #2B579A;
    width: 100%;
    position: fixed; /* El menú se mantiene fijo en la parte superior */
    top: 60px; /* El menú empieza después del logo */
    left: 0;
    z-index: 999; /* El menú está por debajo del logo */
    margin: 0;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.menu ul li {
    flex-grow: 1;
    text-align: center;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    padding: 8px;
    display: block;
}

.menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


.fondo{

    
}

/*Contenido central del sistema web*/
main {
    text-align: center;
}


.seccion {
    border: 1px solid #2B579A;
    border-radius: 8px;
    margin: 20px auto;
    width: 90%;
    background-color: #E6F0FA;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.seccion-titulo {
    background-color: #2B579A;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.seccion-contenido {
    padding: 15px;
    display: block;
}

.seccion-contenido.oculto {
    display: none;
}


.bienvenida {
     text-align: center;
    font-weight: bold;
    color: #2B579A;
    font-size: 18px;
}


.form-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-horizontal div {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.form-horizontal label {
    font-weight: bold;
    margin-bottom: 4px;
}


/*Formato para tablas*/

.tabla-contenedor {
    width: 100%;
    overflow-x: auto; /* Scroll horizontal */
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f5f5f5;
    min-width: 100px;
}

th, td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-align: left;
}

thead {
    background-color: #e0e0e0;
}


/* --- Estilo responsivo para celulares --- */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block; /* Se apilan */
    }

    thead {
        display: none; /* Ocultamos encabezado */
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background: #fff;
        padding: 10px;
    }

    td {
        border: none;
        display: flex;
        justify-content: space-between;
        padding: 6px 10px;
        font-size: 14px;
    }

    td::before {
        content: attr(data-label); /* Muestra el título de la columna */
        font-weight: bold;
        flex: 1;
        color: #555;
    }
}



/*Formato para dar vista de tarjetas a las estaciones solarimétricas*/

.tarjeta-estacion {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    background-color: #f0f4f8;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.imagen-estacion {
    width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}


/*imagenes de bienvenida*/
.seccion-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  width: 100%; /* importante para que se alinee bien en el contenedor */
}

.imagen-info {
  width: 300px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0; /* evita que la imagen se achique */
}

.texto-info {
  flex: 1; /* ocupa el resto del espacio */
  max-width: 100%;
}


/*Se incluyen clases para mejorar el aspecto de los botones*/

/* Estilo base para todos los botones */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: white;
  text-align: center;
  text-decoration: none;
}


/* Botón azul */
.btn-azul {
  background-color: #007BFF;
}
.btn-azul:hover {
  background-color: #0056b3;
}

/* Botón rojo */
.btn-rojo {
  background-color: #dc3545;
}
.btn-rojo:hover {
  background-color: #a71d2a;
}

/* Botón verde */
.btn-verde {
  background-color: #28a745;
}
.btn-verde:hover {
  background-color: #1e7e34;
}

/*corrección de vista del inicio de sesión ---------------------------------------------------------------------------------------------------------------*/

.contenedor-inicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9f9;
}

.titulo-inicio {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}

.formulario-inicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

.campo-inicio {
  margin-bottom: 16px;
  width: 100%;
}

.etiqueta-inicio {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.entrada-inicio {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.boton-inicio {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton-inicio:hover {
  background-color: #218838;
}

/*Sección para configuración del usuario y su nombre*/

.encabezado-usuario {
  position: fixed;         /* Fija el encabezado */
  top: 0;                  /* Pega al borde superior */
  right: 0;                /* Pega al borde derecho */
  background-color: #f0f0f0;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.contenedor-usuario {
  display: flex;
  align-items: center;
  gap: 10px;
}

.imagen-usuario {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nombre-usuario {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.info-usuario {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cerrar-sesion {
  font-size: 0.9rem;
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s;
}

.cerrar-sesion:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*Estilos para el modal de registro de usuarios*/
/* Fondo semi-transparente para el modal */
.modal-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none; /* oculto por defecto */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Tarjeta modal */
.modal-contenido {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
}

/* Botón cerrar modal */
.modal-cerrar {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Estilos para los labels e inputs dentro del modal */
.modal-contenido form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #333;
}

.modal-contenido form input[type="text"],
.modal-contenido form input[type="email"],
.modal-contenido form input[type="password"],
.modal-contenido form select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.modal-contenido form input[type="text"]:focus,
.modal-contenido form input[type="email"]:focus,
.modal-contenido form input[type="password"]:focus,
.modal-contenido form select:focus {
  border-color: #3a86ff;
  outline: none;
}

/* Botones en el modal */
.modal-contenido form button {
  margin-top: 20px;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-size: 15px;
}

/* Botón Guardar */
.modal-contenido form button.btn-verde {
  background-color: #4CAF50;
  color: white;
  margin-right: 10px;
}

/* Botón Cancelar */
.modal-contenido form button.btn-gris {
  background-color: #bbb;
  color: #333;
}

/* Para el botón cerrar (la X) */
.modal-cerrar:hover {
  color: #e63946;
}

/*Validación de campos*/

.mensaje-error {
  color: red;
  font-size: 0.9em;
}

.input-invalido {
  border: 1px solid red;
}

/*Modal para estaciones solarimétricas*/
.modal-estacion-contenido {
  width: 70vw;
  max-height: 60vh;
  padding: 2rem;
  font-size: 1.2rem;
  overflow-y: auto;
  border-radius: 1rem;
}

#tituloEstacion {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

#descripcionEstacion {
  text-align: justify;
  line-height: 1.6;
  font-size: 1.2rem;
}


/*Generación de descripción para datos externos*/

.Descdata {
    background: #f9f9f9;
    border-left: 4px solid #0077cc;
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.Descdata h3, 
.Descdata h4 {
    margin-top: 0;
    color: #0077cc;
}


/* ======== FOOTER ELEGANTE ======== */
.footer {
    background-color: #ebebeb; 
    color: #121212; 
    padding: 40px 60px;
    font-family: "Segoe UI", Roboto, sans-serif;
    border-top: 2px solid #333;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}

.footer div {
    max-width: 1100px;
    margin: 0 auto;
}

/* Títulos de sección */
.footer .texton {
    font-weight: 600;
    font-size: 16px;
    color: #040404;
    margin-bottom: 10px;
    margin-top: 25px;
}

/* Listas descriptivas */
.footer .Textod {
    margin: 0 0 10px 25px;
    list-style-type: disc;
    color: #131313;
    font-size: 15px;
    line-height: 1.6;
}

.footer .Textod li {
    margin-bottom: 8px;
}

/* Viñetas más discretas */
.footer .Textod li::marker {
    color: #0c0c0c;
}

/* Enlaces */
.footer a {
    color: #0d0d0d;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer {
        padding: 25px 20px;
        text-align: left;
    }
    .footer .texton {
        font-size: 15px;
    }
    .footer .Textod {
        font-size: 14px;
        margin-left: 20px;
    }
}

.contenedor-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}

.imagen-centro {
  max-width: 400px;  /* controla el tamaño máximo */
  width: 40%;        /* se ajusta al ancho disponible */
  height: auto;      /* mantiene proporción */
  opacity: 0.9;      /* le da un toque elegante */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.imagen-centro:hover {
  transform: scale(1.05); /* pequeño efecto al pasar el mouse */
  opacity: 1;
}
