body {
  font-family: Arial, sans-serif;
  background: linear-gradient(120deg, #f0f4f7, #d9e2ec);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  margin-top: 50px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 500px;
  max-width: 90%;
}

h1 {
  text-align: center;
  color: #333;
}

#search {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

#results {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

#results li {
  margin-bottom: 8px;
}

#results button {
  margin-left: 10px;
  padding: 4px 10px;
  border: none;
  background-color: #1976d2;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#results button:hover {
  background-color: #1565c0;
}

#serviceContent {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: monospace;
  font-size: 14px;
  background-color: #f7f9fb;
}

#copyBtn {
  padding: 6px 12px;
  border: none;
  background-color: #43a047;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#copyBtn:hover {
  background-color: #388e3c;
}
