/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
















 */

.escolha_div {
  background-color: #fff;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
}
.escolha_div form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.escolha_div label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.escolha_div input[type="number"] {
  width: 80px;
  padding: 3px;
}
.escolha_div select {
  width: 160px;
  padding: 3px;
}
.escolha_div .button-container {
  display: flex;
  gap: 10px;
}
.escolha_div button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
}
.escolha_div button:hover {
  background-color: #218838;
}
