body {
  background-color: white;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0px;
  height: 100vh;
}


tr {
  border-bottom: 1pt solid #E5E4E2;
}

#loader_container {
    width: 100%;
    position: absolute;
    display: none;
  }
  #loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: relative;
    display: grid;
    place-items: center;
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
.logo-placer {
  text-align: center;
  width: 100%;
  text-align: center;
}

.logo {
  margin-top: 50px;
}

#welcome-user {
  margin: 0 auto;
  font-size: 1.3rem;
  width: fit-content;
  font-family: sans-serif;
  color: #181c14;
}

.button-start {
  background-color: #333; /* Cinza escuro */
  font-family: sans-serif;
  color: #fff; /* Branco */
  border: none;
  border-radius: 5px; /* Ajuste o valor para controlar o arredondamento */
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-start:hover {
  background-color: #555; /* Cinza mais claro ao passar o mouse */
}

.barra-inferior {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #ff0000;
}

.barra-superior {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5%;
  background-color: #ff0000;
  color: white;

  display: inline-grid;
  grid-template-columns: 20% 60% 20%;
}

.menu-topo-1 {
  padding-top: 7px;
  width: 100%;
  text-align: left;
}

.menu-topo-2 {
  padding-top: 7px;
  width: 100%;
  text-align: center;
}

.menu-topo-3 {
  padding-top: 7px;
  width: 100%;
  text-align: right;
}

.barra-dia-semana {
  position: relative;
  margin: 40px 0px 10px 0px;
  width: 100%;
  height: 5%;
  background-color: white;
    font-size: 14px;
  display: inline-grid;
  grid-template-columns: 60% 40%;
  border-bottom: 1px solid #333;
}

.menu-barra-dia-semana-1 {
    width: 100%;
    text-align: left;
    padding-bottom: 6px;
  text-align: left;
}

.menu-barra-dia-semana-2 {
    width: 100%;
    text-align: left;
    padding-bottom: 6px;
  text-align: right;
}


.barra-pesquisa {
    position: relative;
    margin: 0px 0px 10px 0px;
    width: 98%;
    height: 5%;
    background-color: white;
      font-size: 14px;
    display: inline-grid;
    grid-template-columns: 60% 40%;
    border-bottom: 1px solid #333;
    padding-right: 5px;
  }

  
.menu-pesquisa-semana-1 {
    width: 100%;
    text-align: left;
    padding-bottom: 6px;
  text-align: left;
}

.menu-pesquisa-semana-2 {
    width: 100%;
    text-align: left;
    padding-bottom: 6px;
  text-align: right;
  display: flex;
}

.div-tabela-produtos{
    width: 100;
    height: 70%;
    overflow-y: auto;
    overflow-x: none;
}

#tabela-produtos{
    width: 100%;
}

#tabela-produtos-body{
    font-size: 10px;
}



.lista-produtos-produto {
  font-family: sans-serif;
  font-size: 12px;
  display: block;
}

.lista-produtos-categtoria{
  font-family: sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  display: block;
  margin: 4px 0px;
  color: blue;
}


.pagina-encomenda{
  padding: 40px 10px;
  height: calc(100vh - 153px);
}

.encomenda-linha{
  height: 80px;
  font-family: sans-serif;
  display: block;
}
.encomenda-titulo{
  font-size: 18px;
  font-weight: 700;
  color: #555;
}

.encomenda-descricao{
  font-size: 16px;
  font-weight: 700;
  color: red;
}