
/* ========= Táblázat stílus ========= */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  overflow: hidden;
  border-radius: 8px;
  flex-wrap: wrap;
}

.styled-table thead {
  background-color: #003366;
  color: #ffffff;
}

.styled-table th,
.styled-table td {
  padding: 2% 5%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:hover {
  background-color: #e0e0e0;
}



