ul.list-with-spacing {
  padding-left: 20px; /* Espacio para los puntos */
  list-style-type: disc; /* Tipo de viñeta (puntos) */
}

ul.list-with-spacing li {
  margin-bottom: 10px; /* Espacio entre los elementos */
  font-size: 14px; /* Tamaño de fuente ajustado */
  text-align: justify; /* Justificar el texto */
}
.custom-table {
  table-layout: auto;
  width: 100%;
  font-size: 14px;
}

.custom-table thead {
  background-color: #6bc5d1; 
  color: #ffffff;
}

@media (max-width: 768px) {
  .custom-table {
    font-size: 12px; /* Tamaño de fuente más pequeño en dispositivos móviles */
  }   
  .custom-table thead {
    font-size: 10px; /* Tamaño de fuente más pequeño para el encabezado en móviles */
  }
}

.custom-table thead th {
  text-transform: none; /* Desactiva la transformación de capitalización */
}

.custom-table th,
.custom-table td {
  white-space: normal;
  word-wrap: break-word;
}

.circulo {
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
  margin-right: 10px;  /* Esto hace que la forma sea circular */
}

.contenedor {
  display: flex;
  align-items: center; /* Centrar verticalmente */
}

.legend {
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.legend h5 {
  margin-top: 0;
}

.legend i {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  margin-top: 4px;
  float: left;
}