body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
}

h2 {
  margin-top: 60px;
  font-size: 40px;
  font-weight: 600;
  color: #4285f4; /* Google blue */
  letter-spacing: -1px;
}

.search-box {
  width: 100%;
  max-width: 580px;
  margin-top: 25px;
  position: relative;
}

input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 999px; /* fully rounded */
  outline: none;
  background: white;
  transition: all 0.2s ease;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

input:focus {
  border-color: #dcdcdc;
  box-shadow: 0 1px 8px rgba(32, 33, 36, 0.4);
}

.suggestions {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  margin-top: 8px;
  padding: 5px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  animation: fadeIn 0.2s ease-in-out;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #202124;
  transition: background 0.2s ease, color 0.2s ease;
}

.suggestion-item:hover {
  background: #f1f3f4;
}

.suggestion-item i {
  margin-right: 12px;
  font-size: 16px;
  opacity: 0.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar Styling */
.suggestions::-webkit-scrollbar {
  width: 6px;
}
.suggestions::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.suggestions::-webkit-scrollbar-thumb:hover {
  background: #999;
}
