.tituloY {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: gold
}
.tituloB {
    padding-top: 20px;
    padding-bottom: 10px;
    color: white;
    background-color: rgb(201, 147, 0);    
}

table.dataTable td {
    font-size: 0.9em;
  }

table.dataTable th {
    font-size: 0.8em !important;
  }

details summary {
    cursor: pointer;
    font-weight: bold;
}

details[open] summary {
    background-color: #f0f0f0;
}  

details summary::before {
  margin-right: 5px;
  font-size: 3.2em; /* Ajusta el tamaño según tus necesidades */
}

/* En tu hoja de estilos CSS */
details.collapse[open] {
  transition: max-height 0.3s ease-in-out;
}

/* Inicialmente, el contenido del acordeón tendrá una altura de 0 */
details.collapse > * {
  max-height: 0;
  overflow: hidden;
}


/* Estilos para las estrellas de calificacion */
.stars-outer {
  display: inline-block;
  position: relative;
  font-family: FontAwesome;
  font-size: 18px;
}
.stars-outer::before {
  content: "\f006 \f006 \f006 \f006 \f006";
}
.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  font-size: 18px;
}
.stars-inner::before {
  content: "\f005 \f005 \f005 \f005 \f005";
  color: #f8ce0b;
}

.divisor {
  height: 2px;
  background-color: gray;
  margin: 5px 0;
}