html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Kart stilleri */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-header {
  background-color: #343a40;
  color: white;
  border-radius: 10px 10px 0 0 !important;
  padding: 15px;
}

.card-body {
  padding: 20px;
}

/* Buton stilleri */
.btn-primary {
  background-color: #343a40;
  border-color: #343a40;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #495057;
  border-color: #495057;
  transform: scale(1.03);
}

/* Input stilleri */
.form-control {
  border-radius: 6px;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #343a40;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25);
}

/* Tablolar için stiller */
.table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table th {
  background-color: #343a40;
  color: white;
  border: none;
}

.table-hover tbody tr:hover {
  background-color: rgba(52, 58, 64, 0.05);
}