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;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border: 59px solid #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
  background: #000000;
}
::-webkit-scrollbar-track {
  background: #666666;
  border: 47px none #ffffff;
  border-radius: 7px;
}
::-webkit-scrollbar-track:hover {
  background: #666666;
}
::-webkit-scrollbar-track:active {
  background: #333333;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

.botao-salvar,
.botao-cancelar,
.botao-acessar,
.botao-combinar,
.botao-editar {
  min-width: 60px;
  min-height: 25px;
  padding: 0 5px;
  color: white;
  border-radius: 5px;
}

.botao-salvar,
.botao-editar {
  background-color: #007bff;
}

.botao-combinar {
  background-color: #333333;
}

.botao-cancelar {
  background-color: #6c757d;
}

.botao-fechar {
  background-color: red;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 0 5px 0 5px; 
}

.botao-acessar {
  background-color: rgb(0, 48, 73);
}

.botao-criar {
  color: rgb(0, 48, 73);
}

.botao-deletar {
  color: white;
  background-color: red;
  min-width: 50px;
  height: 25px;
  border-radius: 5px; 
}