/* Genel Stil */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6f9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(90deg, #0073e6, #005bb5);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  height: 150px; /* sabit yükseklik */
}
header h1 {
  font-weight: 700;
  font-size: 2.2rem;
}
header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Arama Kartı */
.card {
  border: none;
  border-radius: 10px;
}
.card-body {
  padding: 25px;
}
form input[type="text"] {
  border-radius: 6px;
  border: 1px solid #ccc;
}
form button {
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
form button:hover {
  background: #005bb5;
}

/* En Son Eklenenler */
h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
.list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}
.list-group-item:hover {
  background: #f0f8ff;
}
.list-group-item h5 {
  font-weight: 600;
  color: #0073e6;
}
.list-group-item p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #555;
}

/* Footer */
footer {
  background: #f1f1f1;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
}
