/* Global dark theme overrides — Bootstrap light defaults bastır */
body {
  background: #0f0f1a;
  color: #e0e0e0;
}

/* Tüm kart içerikleri */
.card, .card * {
  color: #e0e0e0;
}
.card {
  background: #1a1a2e;
  border-color: #2a2a4a;
}
.text-muted {
  color: #9090a0 !important;
}

/* Form elemanları */
.form-control,
.form-select,
textarea {
  background: #12122a !important;
  border-color: #2a2a4a !important;
  color: #e0e0e0 !important;
}
.form-control:focus,
.form-select:focus,
textarea:focus {
  background: #12122a !important;
  color: #e0e0e0 !important;
  border-color: #0d6efd !important;
  box-shadow: none !important;
}
.form-control::placeholder,
textarea::placeholder {
  color: #555 !important;
}
.form-label,
label {
  color: #e0e0e0 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #e0e0e0;
}

/* Tablo */
.table {
  color: #e0e0e0;
}
.table thead th {
  color: #9090b0;
  border-color: #2a2a4a;
}
.table td, .table th {
  border-color: #2a2a3a;
}
.table tbody tr:hover {
  background: rgba(255,255,255,.03);
}

/* Alert */
.alert-danger {
  background: #2a0f0f;
  border-color: #dc3545;
  color: #f8d7da;
}
.alert-success {
  background: #0f2a1a;
  border-color: #198754;
  color: #d1e7dd;
}

/* Navbar */
.navbar {
  background: #1a1a2e !important;
  border-bottom: 1px solid #2a2a4a;
}
.navbar * {
  color: #e0e0e0 !important;
}

/* Badge */
.badge.bg-secondary { background: #6c757d !important; }

/* Input group */
.input-group-text {
  background: #12122a;
  border-color: #2a2a4a;
  color: #e0e0e0;
}

/* Select options */
option {
  background: #12122a;
  color: #e0e0e0;
}
