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

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Main layout */
.container {
  text-align: center;
  margin-top: 12vh;
  width: 90%;
  max-width: 600px;
}

.title {
  font-size: 3rem;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

/* Search box */
.search-box {
  position: relative;
}

#searchInput {
  width: 100%;
  padding: 12px 18px;
  font-size: 1.1rem;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  transition: box-shadow 0.3s, border-color 0.3s;
}

#searchInput:focus {
  border-color: #0066cc;
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

/* Results list */
#results {
  list-style: none;
  margin-top: 15px;
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
}

#results li {
  background: white;
  margin-bottom: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

#results li:hover {
  background: #f2f7ff;
}

#results a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}

/* Extra elements */
.hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.back-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 10px 20px;
  background: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s;
}

.back-button:hover {
  background: #004c99;
}

/* Footer */
footer {
  margin-top: auto;
  font-size: 0.85rem;
  color: #666;
  padding: 20px 0;
}
.review-section {
  margin-top: 3rem;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: left;
}

.review-section h2 {
  color: #0066cc;
}

#reviewText {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 1rem;
}

#submitReview {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

#submitReview:hover {
  background-color: #004c99;
}

#reviewList {
  list-style: none;
  margin-top: 15px;
}

#reviewList li {
  background: #f2f7ff;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
}

