input,
select,
textarea {
    /* border: none; */
    font-family: Arial, Helvetica, sans-serif;
    
    background-color: #ffffff;
    border: none;
    border-radius: 2px;
    margin-top: 0px;
    padding-left: 8px;
    color: black;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {   
    -webkit-appearance: none;
    margin: 0;
}

/* utilizado para firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

textarea {
  padding-top: 5px;
  padding-bottom: 5px;
  resize: none;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {



  background: linear-gradient(180deg, #0891b2 0%, #06b6d4 100%);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {

  background: linear-gradient(180deg, #06b6d4 0%, #22d3ee 100%);
}
::-webkit-scrollbar-thumb:active {

  background: #0891b2;
}
::-webkit-scrollbar-track {



  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
::-webkit-scrollbar-track:hover {

  background: rgba(255, 255, 255, 0.08);
}
::-webkit-scrollbar-track:active {

  background: rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-corner {
  background: transparent;
}

button.botao-salvar,
button.botao-cancelar,
button.botao-acessar {
  min-width: 80px;
  min-height: 38px;
  padding: 0 20px;
  color: white;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

button.botao-salvar {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

button.botao-salvar:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(8, 145, 178, 0.4);
}

button.btn-adicionar {
  background: #008111;
}

button.botao-cancelar {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

button.botao-cancelar:hover {
  background: linear-gradient(135deg, #9ca3af 0%, #d1d5db 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(107, 114, 128, 0.4);
}

button.botao-fechar {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

/* button.botao-fechar:hover {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  transform: rotate(90deg);
} */

button.btn-seta-mostrar-mais,
button.btn-seta-mostrar-menos {
  color: white;
  font-size: 20px;
  text-align: center;
}

button.btn-adicionar-carrinho {
    width: 100%;
    margin-top: 10px;
    background-color: #0891b2;
    color: white;
    height: 25px;
    border-radius: 10px;
}

button.botao-acessar {
  background: linear-gradient(135deg, #003049 0%, #005073 100%);
}

button.botao-acessar:hover {
  background: linear-gradient(135deg, #005073 0%, #0077b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 48, 73, 0.4);
}
button.botao-criar {
  /* color: #f8f8f8; */
  font-weight: 600;
}

button.botao-deletar {
  color: white;
  background: #dc2626;
  width: 70px;
  height: 35px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

button.botao-deletar:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

button.botao-delete {
  background: #dc2626;
}

button.botao-editar {
  color: white;
  background: #198d02;
  width: 70px;
  height: 35px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

button.botao-editar:hover {
  background: #198d02;
  transform: translateY(-2px);
}

.mostrar-a {
	color: rgb(0, 81, 255);
}

.botao-combinar {
  color: white;
  background: #005b8b;
  width: 70px;
  height: 35px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
