* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  background: linear-gradient(135deg, #b6f0c4, #7ddc9a);

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 92%;
  max-width: 420px;
  max-height: 95vh;

  background: white;
  border-radius: 20px;
  padding: 14px;

  display: flex;
  flex-direction: column;
}

.logo {
  width: 85px;
  margin: 0 auto 5px auto;
  display: block;
}

h1 {
  text-align: center;
  margin: 5px 0 10px;
}

/* INPUT */
.search-box input {
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid #ccc;
  text-align: center;
}

/* ÜST 2 BUTON */
.buttons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 18px;
  background: #2ecc71;
  color: white;
}

/* 🔥 ALT BUTON (FULL WIDTH) */
.list-btn {
  margin-top: 8px;
  display: flex;
}

.list-btn button {
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  background: #2ecc71;
}

/* RESULT SCROLL */
.result {
  flex: 1;
  margin-top: 10px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 5px;
}

.suggestion-item {
  padding: 8px;
  margin: 4px 0;
  background: #f2f2f2;
  border-radius: 10px;
}