ul.list-with-spacing {
  padding-left: 20px; 
  list-style-type: disc; 
}

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; 
  }     
  .custom-table thead {
    font-size: 10px; 
  }
}

.custom-table thead th {
  text-transform: none; 
}

.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;  
}

.contenedor {
  display: flex;
  align-items: center;
}

.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;
}