/* Wrapper general */
.asp-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Card compact */
.asp-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 15px 20px;
  max-width: 650px;
  width: 100%;
}

/* Rānd orizontal pentru Marca + Model */
.asp-row-inline {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

/* Coloane egale */
.asp-col {
  flex: 1;
}

/* Label centrat deasupra selectului */
.asp-field-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.asp-field-top label {
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

/* Select normal */
.asp-field-top select {
  width: 100%;
}

/* Buton centrat */
.asp-row-button {
  text-align: center;
  margin-top: 10px;
}
.asp-field-top select {
  height: 42px;          /* īnal?ime mai mare */
  line-height: 42px;     /* text centrat vertical */
  padding: 6px 10px;     /* spa?iu interior corect */
  font-size: 15px;       /* op?ional, pentru lizibilitate */
}
#asp-search {

  font-size: 15px;
  border-radius: 6px;
  transition: 0.2s ease;
}

#asp-search:hover {
  background-color: #1d93ab;
}


/* Responsive */
@media (max-width: 768px) {
  .asp-row-inline {
    flex-direction: column;
  }
}
