/* =============== GENEL =============== */
body {
  background-color: #f9fafb;
  font-family: "Inter", system-ui, sans-serif;
  color: #1f2937;
}

/* =============== SCROLLBAR =============== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(100, 116, 139, 0.6);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 116, 139, 0.8);
}

/* =============== TABLOLAR =============== */
table tr:hover {
  background-color: #f1f5f9; /* Tailwind: bg-slate-100 */
}
table th {
  background-color: #e5e7eb; /* Tailwind: bg-gray-200 */
}

/* =============== INPUT & FOCUS =============== */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2563eb; /* Tailwind: blue-600 */
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

/* =============== BUTON GEÇİŞLERİ =============== */
button {
  transition: all 0.15s ease-in-out;
}

/* =============== KUTULAR / MODALLAR =============== */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.shadow-custom {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.bg-blue-100 { background-color: #dbeafe !important; }
.bg-blue-200 { background-color: #bfdbfe !important; }



