body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A more modern font family */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333; /* Ensures consistent text color */
}

/* Header and navigation styles */
/* Header styles */
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 10px solid #dddddd;
  text-align: left;
  padding: 8px;
}
tr:nth-child(even) {
  background-color: #dddddd;
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f7f7f7; /* Same as the page background */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ccc;
}

/* Navigation bar inside the header */
.nav-bar {
    max-width: 900px; /* Centered and matches container size */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Navigation links */
.nav-bar a {
    text-decoration: none;
    color: #333; /* Match body text color */
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-bar a:hover {
    background-color: #007bff;
    color: #fff;
}
/*.header {*/
/*    background-color: #002d62; /* Darker shade for professional appearance */
/*    color: white;
/*    padding: 10px 20px; /* Padding for better spacing */
/*    text-align: center; /* Centers the title */
/*    font-size: 24px; /* Larger font size for header */
/*    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
/*}

/* Styles for the outer navigation container */
.nav {
    display: flex;
    justify-content: center; /* Centers the inner container */
    background-color: #343a40; /* Example background color */
    padding: 10px 20px;
}

/* Styles for the inner navigation container */
.nav-inner {
    display: flex;
    justify-content: center; /* Centers the links within */
    align-items: center; /* Aligns items vertically */
    max-width: 900px; /* Sets the maximum width of the navigation links */
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 10px; /* Adjusts spacing between links */
    font-size: 16px;
}

.nav a:hover, .nav a:focus {
    background-color: #0056b3;
    border-radius: 4px;
}
/* Form styles */
form {
    margin: 20px 0; /* More margin for better spacing */
}

input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 4px; /* Rounded corners */
    width: 300px; /* Ensures input is not too short */
}

button {
    padding: 8px 16px;
    background-color: #28a745; /* Green button for actions */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s; /* Smooth transition for interaction */
}

button:hover {
    background-color: #218838; /* Slightly darker on hover */
}

/* Footer styles */
.footer {
    background-color: #002d62; /* Consistent with header but darker */
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; /* Ensures footer is full width */
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1); /* Subtle shadow for lifting effect */
}

h1, h2, h3 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

p {
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Subtle shadow for depth */
}
.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.info-navigation ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-navigation ul li {
    display: inline;
}

.info-navigation ul li a {
    text-decoration: none;
    color: #007bff;
    padding: 10px 15px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.info-navigation ul li a:hover,
.info-navigation ul li a:focus {
    background-color: #007bff;
    color: white;
}

section {
    margin-bottom: 40px;
}

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

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}