.bio-wrapper {    /* for desktop layout, bio on left, table on right */
  max-width:1000px;
  margin: 0 auto;
}
  
.bio-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bio-content {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.bio-table {
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  border: 8px solid var(--homecolor); margin-bottom: 30px;
  background-color: var(--websitecolor);
  padding: 10px;
}



/* home table styling */
.tr-item {
  box-shadow: 0 -1px 0 #000;
}

.table-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0 0;
}
.name-subtitle {
  display: block;
  font-size: 14px;
  margin-top: 2px;
  font-weight: normal;
  opacity: 0.8;
}


.bio-table tr {
  padding: 10px 0;
}

.bio-table td {
  padding: 5px 10px;
}

.bio-table td:first-child {
  font-size: 20px;
  word-break: break-word;
}

.bio-table br {
  margin: 5px 0;
}

.section-title {
  text-align: center;
  font-size: 18px;
  padding: 5px 0;
  font-weight: bold;
}


.bio-table.desktop-only {
  align-self: flex-start; /* keeps table aligned to top of bio */
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none; /* hides mobile table for desktop */
}

@media (max-width: 768px) {
  .desktop-only {
    display: none; /* hides desktop table for mobile*/
  }
    
  .mobile-only {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}


#devlog-section {
  max-width: 600px;
  margin: 2rem auto;
  border: 2px solid var(--textcolor, #ffffff);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

#devlog-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--textcolor, #ffffff);
}

#devlog-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  background: transparent;
  color-scheme: light dark;
  overflow-y: scroll;
}