body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #eef1f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #1a3d7c;
  margin-bottom: 25px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2c3e50;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  color: #333;
}

select,
input[type="date"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.filtros label {
  margin-right: 5px;
}

.filtros input,
.filtros select,
.filtros button {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.filtros button {
  background-color: #3498db;
  color: white;
  border: none;
  cursor: pointer;
}

.filtros button:hover {
  background-color: #2980b9;
}

#tabela-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 10px;
}

th {
  background-color: #1a3d7c;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #f4f6f9;
}

#tabela-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paginacao {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;
  margin-top: 15px;
  gap: 10px;
  width: 100%;
}

.paginacao button {
  background-color: #34495e;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.paginacao button:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}
