body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #f8f9fa;
  padding: 1px 0; /* Reduced padding to make the header smaller */
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-radius: 10px 10px 0 0; /* Rounded top corners */
}

.footer {
  background-color: #f8f9fa;
  padding: 1px 0; /* Reduced padding to make the footer smaller */
  position: fixed;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #ddd;
  font-size: 1rem; /* Smaller font size for the footer text */
  border-radius: 0 0 10px 10px; /* Rounded bottom corners */
}

.header {
  background-color: #f8f9fa;
  padding: 1px 0; /* Reduced padding to make the header smaller */
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  max-height: 60px;
  position: absolute;
  left: 20px;
  top: 20px;
}

.flowtrack-logo {
  max-height: 70px;
  position: absolute;
  right: 20px;
  top: 20px;
}

h1, h2 {
  margin: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
}

.footer {
  background-color: #f8f9fa;
  padding: 1px 0; /* Reduced padding to make the footer smaller */
  position: fixed;
  width: 100%;
  height: 60px;
  bottom: 0;
  border-top: 1px solid #ddd;
  font-size: 1rem; /* Smaller font size for the footer text */
  
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  flex: 1;
}

.content {
  padding-top: 120px; /* Adjust padding to account for fixed header */
  margin-bottom: 40px; /* Adjust margin to account for fixed footer */
}

.tracking-table {
  width: 100%;
  border-collapse: collapse;
}

.tracking-table th, .tracking-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.tracking-table th {
  background-color: #f8f9fa;
  text-align: center;
}

.tracking-table td {
  text-align: center;
}

.tracking-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.tracking-table tr:hover {
  background-color: #ddd;
}

.tracking-table td:first-child {
  text-align: center;
}

.tracking-table td:nth-child(2)::after {
  content: ":";
}