body {
  font-family: sans-serif;
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}



#leadList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.lead-card {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.lead-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lead-card h3 {
  margin: 0 0 8px;
}

.lead-card p {
  margin: 4px 0;
}

.lead-actions {
  margin-top: 12px;
}

.lead-actions button {
  margin-right: 8px;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background-color: #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lead-actions button:hover {
  background-color: #ddd;
}

input, textarea, select {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 2px rgba(0,123,255,0.5);
}