/* Özel stil tanımlamaları */

/* Karanlık mod için bazı ayarlar */
html[data-bs-theme='dark'] {
  background-color: #0d1117;
  color: #c9d1d9;
}

html[data-bs-theme='dark'] .table {
  --bs-table-bg: #161b22;
  --bs-table-striped-bg: #1d222a;
  --bs-table-hover-bg: #21262d;
  color: #c9d1d9;
}

html[data-bs-theme='dark'] .form-control {
  background-color: #161b22;
  color: #c9d1d9;
  border-color: #30363d;
}

html[data-bs-theme='dark'] .form-select {
  background-color: #161b22;
  color: #c9d1d9;
  border-color: #30363d;
}

html[data-bs-theme='dark'] .modal-content {
  background-color: #161b22;
  color: #c9d1d9;
}

/* Yatay kaydırmayı önlemek için responsive tablolar */
.table-responsive {
  overflow-x: auto;
}