#readme-section {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  max-width: 100%;
  overflow-x: hidden;
  /* width: auto;
  overflow: unset; */
}

.readme-tab {
  background-color: #1E1D22;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 18px 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.readme-container {
  background-color: #1E1D22;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  padding: 36px;
  max-width: 100%;
  box-sizing: border-box;
}

#readme-content h1,
#readme-content h2,
#readme-content h3,
#readme-content h4,
#readme-content h5,
#readme-content h6,
#readme-content p,
#readme-content a,
#readme-content ul,
#readme-content li,
#readme-content strong,
#readme-content em {
  font-family: "Roboto Condensed", sans-serif;
}

#readme-content h1 {

  font-size: 2.5rem;
  border-bottom: 2px solid #f3f3f3;
  /* padding: 0 10px; */
  padding-bottom: 1.2rem;
  /* margin-top: 1.5rem; */
  display: flex;
  align-items: center;
  gap: 15px;
}

#readme-content h2, h3, h4, h5 {
  margin-top: 1.25rem;
}

#readme-content h2 {
  font-size: 2rem;
  border-bottom: 2px solid #f3f3f3;
  /* padding: 0 10px; */
  padding-bottom: 1.2rem;
}

#readme-content h3 {
  font-size: 1.5rem;
}

#readme-content h4 {
  font-size: 1.3rem;
}

#readme-content h5 {
  font-size: 1.2rem;
}

#readme-content p {
  line-height: 1.6;
  margin: 14px 0 10px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* padding: 0 10px; */
}

#readme-content a {
  color: #ff6b6b; /* match your accent color */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#readme-content code {
  background: #2d2d2d;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
}

#readme-content pre {
  background: #312F38;
  padding: 1rem;
  border-radius: 3px;
  overflow-x: auto;
  max-width: 100%;
}

#readme-content pre code {
  background: none;
  padding: 0;
  white-space: pre;
}

#readme-content blockquote {
  border-left: 4px solid #ff6b6b;
  padding-left: 1rem;
  color: #aaa;
  margin: 1rem 0;
}

#readme-content table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

#readme-content th, #readme-content td {
  border: 1px solid #444;
  padding: 0.5rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .readme-container {
    padding: 20px 16px;
  }
  
  .readme-tab {
    padding: 14px 12px;
  }
  
  #readme-content h1 {
    font-size: 2rem;
  }
  
  #readme-content h2 {
    font-size: 1.5rem;
  }
}