@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: Inter, Arial, sans-serif;
}

.lead-type {
  display: inline-flex;
}

.lead-type label {
  display: inline-flex;
}

.lpu-input {
  display: none;
}

body {
  background: #f4f4f4;
}

.iti {
  width: 100%;
}

.suggestions-box {
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1000;
}
.suggestions-box div {
  padding: 8px;
  cursor: pointer;
}
.suggestions-box div:hover {
  background-color: #eee;
}

.panel {
  max-width: 600px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.panel h2 {
  text-align: center;
}

input, select, textarea {
  display: block;
  width: -webkit-fill-available;
  margin: 10px 0;
  padding: 8px;
  border-radius: 8px;
  border: solid 1px #00000038;
}

button {
  padding: 10px;
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
}

button:hover {
  background: #0056b3;
}

.lead-type {
  margin: 15px 0;
}

#response-container {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
}

#response-container.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#response-container.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#response-container .response-title {
  font-weight: bold;
  margin-bottom: 10px;
}

#response-container .response-details {
  margin-top: 10px;
  font-size: 0.9em;
}

.response-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.9em;
}

.response-table th,
.response-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.response-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.response-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.response-table tr:hover {
  background-color: #f0f0f0;
}