/* Estilo general del bloque de pestañas */
#course-tabs-block {
  width: 90%;
    margin: 20px 5%;
    display: flex;
    flex-direction: row;
    font-family: inherit;
    color: #20313d;
}

/* Navegación de las pestañas */
.tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Cambiar a disposición vertical */
  width: 200px; /* Ancho fijo para las pestañas */
  /* border-right: 1px solid #ccc;  */
  background-color: #fff;
}

.tab {
      background: #fff;
    color: #20313d;
    padding: 11px 10px;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 1.4em;
    text-align: left;
    height: 72px;
    /* align-items: anchor-center; */
    align-content: center;
    /* transition: background 0.3s 
ease, color 0.3s 
ease; */
}

.tab.active {
     background: #e0e7eb;
    font-weight: bold;
    border-top: 2px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.tab:hover {
  background-color: #f7f7f7;
}

/* Contenido de las pestañas */
.tab-content {
  flex: 1;
  padding: 20px;
  background: #fff;
  /* border: 1px solid #ccc; */
  border-radius: 0 10px 10px 0; /* Esquinas redondeadas en el lado derecho */
}
.tab-text {
  margin-top: -25px; 
    font-size: 20px;
    max-width: 80%;
    color: #20313d;
    text-align: justify;
    margin-left: 7%;
  
}
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Diseño responsive */
@media screen and (max-width: 768px) {
  .tab-text {
  margin-top: -0;
  
  
}

  #course-tabs-block {
    width: 100%;
  }

  #course-tabs-block {
      flex-direction: column;
      margin: 20px 0;
  }

  .tabs {
      flex-direction: row; /* Cambiar a disposición horizontal */
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #ccc; /* Línea divisoria con el contenido */
  }

  .tab {
  flex: 1;
  text-align: center;
  /* mobile: only top and bottom borders for tabs */
  border-left: none;
  border-right: none;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  }

  .tab:last-child {
      border-right: 1px solid #ccc; /* Agregar borde al último elemento */
  }

  .tab-content {
      border-radius: 0; /* Sin esquinas redondeadas */
  }
  .tab.active {
    background: #e0e7eb;
    font-weight: bold;
    border-top: 3px solid #20313d; /* Indicador de pestaña activa */
    border-left: none;
  }
}
