/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    color: #333;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Estilos da tabela */
  .tabela-pedidos {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .tabela-pedidos th,
  .tabela-pedidos td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  .tabela-pedidos th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
  }
  
  .tabela-pedidos tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .tabela-pedidos tr:hover {
    background-color: #e6ffe6;
  }
  