#widget-motor {
  font-family: 'Georgia', serif;
  max-width: 400px;
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: auto;
}
#widget-motor label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.3px;
}
#widget-motor input,
#widget-motor select,
#widget-motor button {
  width: 92%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: 'Georgia', serif;
}
#widget-motor input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  font-family: 'Georgia', serif;
}
#widget-motor button {
  background-color: #8e1b1b;
  color: white;
  font-weight: bold;
  border: none;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#widget-motor button:hover {
  background-color: #a62222;
}
#widget-motor input[disabled] {
  background-color: #f0f0f0;
}
