
  .submit-button { width: 100%; padding: 1rem; background: #22c55e; color: white; border-radius: 8px; border: none; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-top: 1.5rem; }
  .add-to-slip-button { width: 100%; padding: 0.75rem; background: #3b82f6; color: white; border-radius: 8px; border: none; font-size: 1rem; font-weight: bold; cursor: pointer; margin-top: 1rem; margin-bottom:10px; }
  .value-options { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .value-options label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }

  /* Área de Palpites */
  .palpite-area { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
  .palpite-inputs-container { display: flex; gap: 0.5rem; flex: 1; }
  .dynamic-input { width: 100%; padding: 0.75rem; background: var(--color-contraste); border: 1px solid #444; border-radius: 8px; color: white; text-align: center; font-size: 1.2rem; }
  #add-palpite-button { padding: 0.75rem; background: #8b5cf6; border: none; border-radius: 8px; color: white; font-weight: bold; }
  #staged-palpites-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; background: var(--color-contraste); border-radius: 8px; padding: 0.5rem; min-height: 40px; margin-bottom:10px;}
  .staged-palpite-item { background: var(--accent-destaque); color:black; padding: 0.25rem 0.75rem; border-radius: 20px; font-family: monospace; display: flex; align-items: center; gap: 0.5rem; }
  .staged-palpite-item button { background: none; border: none; color: #ef4444; cursor: pointer; padding: 0; line-height: 1; font-size: 1.2rem;}

  /* Estilos do Bilhete Final */
  #bet-slip-container { margin-top: 1.5rem; background: #111; border-radius: 8px; padding: 1rem; display: none; }
  .bet-slip-list { list-style: none; padding: 0; margin: 0; max-height: 250px; overflow-y: auto; }
  .bet-slip-item { padding: 0.75rem; background: #2a2a2a; border-radius: 6px; margin-bottom: 1rem; }
  .bet-slip-header { display: flex; justify-content: space-between; align-items: center; font-weight: bold; }
  .bet-slip-details { font-size: 0.8rem; color: #9ca3af; }
  .bet-slip-numbers { font-family: monospace; font-size: 1.1rem; padding: 0.5rem 0; word-break: break-all; }
  .bet-slip-header button { background: none; border: none; color: #ef4444; font-size: 1.2rem; cursor: pointer; }
  .bet-slip-total { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #444; display: flex; justify-content: space-between; font-weight: bold; font-size: 1.2rem; }

.form-select {
  background-color: #1f2937; /* fundo escuro */
  color: #fff;              /* texto branco */
  border: 1px solid #444;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  appearance: none; /* remove estilo padrão */
}

/* Ajusta o fundo da lista suspensa (dropdown) */
.form-select option {
  background-color: #111; /* fundo das opções */
  color: #fff;            /* texto visível */
}

@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group .form-label {
    text-align: left;
    min-width: unset;
  }

  .form-group .form-input,
  .form-group .form-select {
    width: 100%;

  }
}