/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Page Layout */
body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  height: 100vh;
}

/* Container */
.page-center {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* Logo */
.logo {
  font-size: 42px;
  font-weight: 600;
  color: #4285f4;
  margin-bottom: 20px;
}

/* Search */
.search-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.search-bar input {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #d0d0d0;
  border-radius: 24px;
}

.search-bar button {
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  background: #4285f4;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.search-bar button:hover {
  background: #3070d8;
}

/* Results */
#results {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item {
  padding: 12px 14px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.result-item h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.result-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.result-item a {
  font-size: 13px;
  word-break: break-all;
}
