/* Özel Scroll Bar Stilleri - Koyu Tema Uyumlu */

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 6px;
  border: 2px solid #0f172a;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

::-webkit-scrollbar-thumb:active {
  background: #64748b;
}

::-webkit-scrollbar-corner {
  background: #0f172a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #334155 #0f172a;
}

/* Özel scrollable elementler için daha ince scroll bar */
.sidebar::-webkit-scrollbar,
.main-content::-webkit-scrollbar,
.table-wrapper::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar,
.dataTables_scrollBody::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.sidebar::-webkit-scrollbar-track,
.main-content::-webkit-scrollbar-track,
.table-wrapper::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track,
.dataTables_scrollBody::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.dropdown-menu::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 5px;
}

.sidebar::-webkit-scrollbar-thumb,
.main-content::-webkit-scrollbar-thumb,
.table-wrapper::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb,
.dataTables_scrollBody::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 5px;
  border: 1px solid #000000;
  transition: background 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.main-content::-webkit-scrollbar-thumb:hover,
.table-wrapper::-webkit-scrollbar-thumb:hover,
.table-wrap::-webkit-scrollbar-thumb:hover,
.dataTables_scrollBody::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Firefox için özel elementler */
.sidebar,
.main-content,
.table-wrapper,
.table-wrap,
.dataTables_scrollBody,
.modal-body,
.dropdown-menu {
  scrollbar-width: thin;
  scrollbar-color: #475569 #000000;
}

