body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 30px auto;
  padding: 0 15px;
}

header {
  text-align: center;
  margin-bottom: 15px;
}

header h1 {
  font-size: 30px;
  margin-bottom: 5px;
}

header p {
  font-size: 14px;
  color: #666;
}

.toc {
  margin: 15px 0;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.toc h3 {
  font-size: 20px;
  color: #222;
}

.toc a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
}

.toc a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}

p, ul, table {
  margin-bottom: 15px;
}

ul {
  margin-left: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background: #f0f0f0;
}

html {
  scroll-behavior: smooth;
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  
  header h1 {
    font-size: 26px;
  }
  
  .toc a {
    font-size: 13px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  th, td {
    padding: 10px;
    font-size: 12px;
  }
  
  /* Tabloyu kaydırılabilir hale getirme */
  .table-responsive {
    overflow-x: auto;
  }
}
