.custom-input {
    all: unset;
    width: 100%;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    padding: 10px 12px;
    line-height: 1.5;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: block;
  }
  
  .custom-input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
  }
  
  /* Para estilizar selects com setinha visível */
  .select-wrapper {
    position: relative;
  }
  
  .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
  }
  
  .select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 0.8rem;
  }
  