body,
p {
  margin: 10;
  padding: 0;
  list-style: none;
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
  background: url("images/fastfood_pattern.jpg") repeat; /* Assumindo nome da imagem como fast_food_pattern.png; ajuste se necessário */
  background-color: #f4f4f4;
  color: #333;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: white;
}

h1 {
  text-align: center;
  margin-top: 100px;
}

header {
  background-color: #1d1e20;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* SECTION FLEXBOX  */

img {
  max-width: 100%;
  display: block;
}

/* SECTION GRID FSF  */

.grid_fsf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: auto;
  gap: 10px;
  margin: 10px;
  max-height: 100vh; /* ocupa a altura da tela */
}

.dashcli {
  gap: 10px;
  margin: 10px;
  max-height: 100vh;
}

.dashcli > div > span {
  text-align: center;
  flex-grow: 1;
}

.grid_fsf > div {
  background-color: white;
  border: solid 2px #c2c2c2;
  border-radius: 10px; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.grid_fsf > div > h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
  flex-shrink: 0;
}

.grid_fsf > div > h3 {
  text-align: left;
  padding-left: 10px;
  color: #333;
}

.grid_fsf > div > ul {
  list-style: none;
  padding: 0;
}

.grid_fsf > div > ul > li {
  background-color: white;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 1.2em;
}

.grid_fsf > div.column0 {
  grid-column: 1 / 4;
  display: block;
  overflow: hidden;
}

.grid_fsf > div > div.headtitle {
    display: flex;
    justify-content: space-around;
    padding: 5px 20px;
}
  
.grid_fsf > div.column1 {
  grid-column: 1;
  grid-row: 2 / 4;
  max-height: 100%;
  overflow: hidden;
  display: block;
}

.grid_fsf > div.column2 {
  grid-column: 2;
  grid-row: 2 / 4;
  max-height: 100%;
  overflow: hidden;
  display: block;
}

.grid_fsf > div.column3 {
  grid-column: 3;
  grid-row: 2/3;
  max-height: 100%;
  overflow: hidden;
  display: block;
}

.grid_fsf > div.column4 {
  grid-column: 3;
  grid-row: 3/4;
  max-height: 100%;
  overflow: hidden;
  display: block;
}

.pedido-id {
  text-align: center;
  font-size: 52px;
  margin-bottom: 15px;
  color: #333;
}

.pedido-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  background-color: white;
  padding: 0;
  margin: 0 0 0 10px;
}

.itens-list {
  list-style: none;
  background-color: white;
  padding: 0;
  margin: 5px;
  overflow-y: auto;
  flex: 1;
}

.item {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.arrow {
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}

.arrow.disabled {
  color: #ccc;
  cursor: default;
}

/* FASTFOOD STYLE */

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  margin: 10px;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #ddd;
  border-radius: 8px; */
  padding: 10px;
  font-size: 2em;
  font-weight: bold;
  flex-grow: 1;
}

.columns {
  display: flex;
  min-width: 95vw;
  justify-content: space-between;
  gap: 20px;
}

.column {
  width: 30%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 80vh;
}

.column-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: rgba(255,255,255,0.96); 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
  margin-bottom: 15px;
}

.title_cli { 
  display: flex;
  font-size: 2em;
  font-weight: bold;
  justify-content: space-between; 
  align-items: center; 
  padding: 5px 20px;
  flex-grow: 1;
}


.pedido-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.pedido-item span {
  margin: 0 20px;
}

.itens-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;

  width: 500px;
  max-height: 500px;
  overflow-y: auto;

  background-color: #fff;
}

.itens-container h3 {
  margin-top: 0;
  font-size: 16px;
}


/* Estilos da Página de Cliente */

.container_cli { 
  display: flex; 
  justify-content: space-around; 
  gap: 20px; 
  min-height: 80dvh; 
  margin-bottom: 20px; 
}

.column h2 { 
  text-align: center; 
  margin-bottom: 15px; 
  color: #333; 
}

.column ul { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;  
}
.column li { 
    background: #eee; 
    margin-bottom: 10px;
    margin-right: 3px; 
    padding: 12px; 
    border-radius: 5px; 
    text-align: center; 
    font-weight: bold; 
    font-size: 3.1em;
}


