body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
}
header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
  position: relative;
}
#contadorPedidos {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: #e74c3c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: bold;
}
#toggleSom {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: #555;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  cursor: pointer;
}
.pedido {
  background: white;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  transition: background 0.3s ease;
  max-width: 900px;
}
.pedido.removendo {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pedido h3 {
  margin: 0 0 0.5rem 0;
}
.notas {
  color: #c0392b;
  font-weight: bold;
}
.tempo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  color: #555;
}
button {
  background: #28a745;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background: #218838;
}
