
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Temel yapı */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Sayfa merkezi */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2.5rem;
  text-align: center;
}

/* Logo */
.logo {
  font-size: 3rem;
  font-weight: 600;
  color: #4b6584;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(75,101,132,0.3);
}

/* Arama formu */
.search-form {
  position: relative;
  width: 100%;
  max-width: 500px;
  z-index: 1;
}

.search-form input {
  width: 100%;
  padding: 0.75rem 3.5rem 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #d1e8ff;
  border-radius: 50px;
  background-color: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-form input:focus {
  border-color: #74b9ff;
  box-shadow: 0 0 0 4px rgba(116,185,255,0.2);
  outline: none;
}

.search-form button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: #74b9ff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.search-form button:hover {
  background-color: #4a90e2;
  transform: translateY(-50%) scale(1.05);
}

.search-form button::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  margin: auto;
  background-image: url('data:image/svg+xml;utf8,    <svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 24 24">      <path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5         6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5         4.99L20.49 19l-4.99-5zM9.5 14C7.01 14 5 11.99 5         9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/>    </svg>');
  background-repeat: no-repeat;
  background-position: center;
}

/* Tahmin kutusu */
.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #d1e8ff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

.suggest-item {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #4b6584;
  cursor: pointer;
  transition: background-color 0.2s;
}

.suggest-item:hover {
  background-color: #e6f2ff;
}

/* Arama Sonuçları */
.results-container {
  margin-top: 1rem; padding-top: 0.5rem;
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
}

.result {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.result h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #2d3436;
}

.result p {
  font-size: 0.95rem;
  color: #636e72;
}

.result .date {
  font-size: 0.85rem;
  color: #b2bec3;
  margin-top: 0.5rem;
}
