
.input-field {
  margin: 1rem 0;
  position: relative;
}

/* Label */
.input-field label {
  display: block;
  font-size: 0.8rem;
  color: #9e9e9e;
  margin-bottom: 0.3rem;
}

/* Select básico */
.input-field select {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 0.8rem;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  

    text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; 
}

/* Ícone de seta customizado */
.input-field select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%239e9e9e' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
}

/* Hover e foco */
.input-field select:hover {
  border-color: #26a69a;
}
.input-field select:focus {
  border-color: #26a69a;
  box-shadow: 0 0 0 2px rgba(38, 166, 154, 0.2);
  outline: none;
}

