
.data-section h3 {
  text-align: center;
  width: 100%;
  text-decoration: underline;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  /*border-left: 5px solid var(--secondary-color);
  border-right: 5px solid var(--secondary-color);*/
  padding: 1rem 1rem;
  border-radius: 8px;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  border-radius: 30px;
  box-shadow: 3px 3px 5px black;
  background-color: var(--bg-elol);
}

.info-table,
.edu-table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid var(--text-color);
  margin-bottom: 2rem;
  font-family: inherit;
  
}

.info-table caption,
.edu-table caption {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  caption-side: top;
  font-weight: bold;
  padding: 0.5rem;
  text-align: left;
  background: var(--secondary-color);
  color: var(--text-color);
}

.info-table thead th,
.edu-table thead th {
  padding: 0.75rem 1rem;
  background: var(--bg-elol);
  color: var(--text-color);
  text-align: left;
  border-bottom: 2px solid var(--text-color);
  
}

.info-table tbody td,
.info-table tbody th,
.edu-table tbody td,
.edu-table tbody th {
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--text-color);
  background-color: var(--secondary-color);
  
}
.info-table tbody th[scope="col"] {
  vertical-align: bottom;
}
.edu-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}

.info-table caption details summary,
.edu-table caption details summary {
  cursor: pointer;
  margin-left: 1rem;
  color: var(--link-active);
  font-size: 0.9rem;
}

.info-table caption details[open] p,
.edu-table caption details[open] p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .info-table,
  .edu-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}