/* Page background */
.page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

/* Card container (soft glass look) */
.search-card {
  width: 520px;
  padding: 28px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Form layout */
.search-form {
  position: relative;
  display: flex;
  gap: 10px;
}

/* Input (Apple clean style) */
.search-input {
  flex: 1;
  padding: 14px 16px;

  border: none;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  outline: none;

  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.search-input:focus {
  box-shadow: inset 0 0 0 2px #0071e3;
}

/* Button (minimal Apple blue) */
.search-button {
  padding: 12px 16px;
  border: none;
  border-radius: 14px;

  background: #0071e3;
  color: white;
  font-size: 14px;

  cursor: pointer;
  transition: 0.2s;
}

.search-button:hover {
  background: #005bb5;
}

/* Suggestions dropdown (soft + floating) */
.suggestions {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;

  list-style: none;
  margin: 0;
  padding: 6px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
}

/* Suggestion item */
.suggestion-item {
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;

  font-size: 14px;
  color: #333;

  transition: 0.15s;
}

.suggestion-item:hover {
  background: rgba(0, 113, 227, 0.08);
}
