/*
Theme Name: Divi Child EvoTools
Theme URI: https://evotools.evolink360.es/
Description: Tema hijo de Divi para personalizaciones de EvoTools.
Author: Tu Nombre o Empresa
Template: Divi
Version: 1.0.0
*/


/* Contenedor general */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Sección de descripción */
.descripcion {
  text-align: center;
  margin-bottom: 30px;
}

.descripcion h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* Formulario */
.formulario form {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.formulario .form-group {
  margin-bottom: 15px;
}

.formulario label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.formulario input[type="text"],
.formulario input[type="number"],
.formulario select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Botón de envío */
.formulario button {
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.formulario button:hover {
  background: #005177;
}

/* Barra de progreso */
.barra-progreso {
  margin: 20px 0;
  text-align: center;
}

#progreso-container {
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
  margin-bottom: 5px;
}

#progreso-bar {
  background: #0073aa;
  height: 100%;
  width: 0%;
  transition: width 0.5s ease;
}

#porcentaje-progreso {
  font-weight: bold;
}

/* Sección de resultados */
.resultados {
  margin-top: 30px;
}

.resultados h2 {
  margin-bottom: 20px;
}

.resultados #resultados-tabla,
.resultados #resultados-graficos {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Botones de exportación */
.exportaciones button {
  background: #28a745;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.exportaciones button:hover {
  background: #218838;
}

