@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Background */
body {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e5e7eb;
}

/* Container */
.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* Card */
.card {
  background: #111827;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Title */
h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Field */
.field {
  margin-bottom: 15px;
}

label {
  font-size: 13px;
  color: #9ca3af;
}

/* Select */
select {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #020617;
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* Button */
button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: white;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79,70,229,0.4);
}

/* Results */
.results-section {
  margin-top: 25px;
}

h3 {
  margin-bottom: 10px;
  font-weight: 500;
  color: #9ca3af;
}

/* List */
ul {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
}

/* Result item */
li {
  background: #020617;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.2s;
}

li:hover {
  background: #0f172a;
}

/* Scrollbar */
ul::-webkit-scrollbar {
  width: 5px;
}

ul::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 10px;
}