* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 95%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

.logo img {
  width: 60px;
  margin-bottom: 20px;
}


#searchBox {
  width: 100%;
  padding: 14px 18px;
  font-size: 17px;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  outline: none;
  background: #fff;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

/* Tap / Focus Effect */
#searchBox:focus,
#searchBox:active {
  border-color: #ff0000;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.18);
  transform: scale(1.02);
}

footer {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}
