body {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    min-height: 100vh;
    background-color: #decfcf;
    margin: 0;
    /* margin-bottom: 20px; */
}

.centered-div {
    background-color: white;
    min-height: 100vh;
    /* Ensures it takes full height */
    width: 80vw;
    display: flex;
    flex-direction: column;
    margin: auto;
    /* padding-bottom: 2rem ; */
    margin-bottom: 2rem;
}

.header {
    width: 80vw;
    /* background-color: white; */
    /* background-color: rgb(137, 164, 95); */
    height: 12rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.left-logo,
.right-logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-logo img {
    width: 50%;
    /* height: auto; */
    object-fit:contain;
}
.left-logo img {
    width: 70%;
    /* height: auto; */
    object-fit:contain;
}

.main-logo {
    flex: 1;
    /* Takes up remaining space */
    text-align: center;
    background-color: rgb(137, 164, 95);
    padding: 10px;
    font-size:large;
}
.main-logo h1{
    font-size: 70px;
    margin: 0;
}
.main-logo p{
    font-size: 20px;
}

.navbar {
    display: flex;
    /* justify-content: center; */
    /* gap: 20px; Spacing between items */
    background-color: rgb(36, 59, 37);
    /* padding: 15px; */
}

.navbar div {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 25px;
    text-align: center;
    border-right: 2px solid black;
}

.navbar div:hover {
    color: lightgray;
    background-color: rgba(255, 255, 255, 0.2);
    /* Slight background change on hover */
}

.info-content {
    display: none;
    /* Hide all sections by default */
}

.info-content.active {
    display: block;
    /* Show the active section */
}

.information {
    padding: 0 2rem;
    text-align: left;
    max-width: 80%;
    margin: auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.information h2 {
    color: #b22222;
    /* Dark red for headings */
    border-bottom: 3px solid #b22222;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.information p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.information ul {
    list-style-type: none;
    padding: 0;
}

.information ul li {
    background: url('checkmark-icon.png') no-repeat left center;
    background-size: 20px;
    /* padding-left: 30px; */
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}

.information a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.information a:hover {
    text-decoration: underline;
}

#table-container {
    margin-top: 20px;
    width: 100%;
    /* overflow-x: auto; */
    max-width: 100%;
    white-space: nowrap;
}

#data-table {
    width: max-content;
    /* Allows table to expand beyond container */
    min-width: 100%;
    /* Ensures it starts with full width */
    border-collapse: collapse;
    margin-top: 10px;
    display: block;
    overflow-x: auto;
    max-width: 100%;
}

#data-table thead,
#data-table tbody {
    /* display: block;  */
}

#data-table tbody {
    /* overflow-y: auto;  */
    /* max-height: 300px; */
    /* display: block; */
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    min-width: 150px;
    /* Ensures columns have a minimum width */
}

th {
    background: #004d99;
    color: white;
}


button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #004d99;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #003366;
}

#pagination-controls {
    margin-top: 10px;
    text-align: center;
}

#pagination-controls button {
    margin: 5px;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    color: black;
}

#pagination-controls .active {
    background-color: #007bff;
    color: black;
}
#excel-table{
    display: none;
}
.highlight { background-color: yellow; }


.content-container {
    display: flex;
    /* Flexbox layout for side-by-side content */
    justify-content: space-between;
    /* Space between text content and the image */
    align-items: flex-start;
    /* Align items to the top */
}

/* Text content container */
.text-content {
    max-width: 70%;
    /* Ensure text content takes up less space than the image */
}

/* Styling for the image */
.img1 {
    max-width: 300px;
    /* Adjust the maximum width of the image */
    height: 400px;
    /* Maintain the aspect ratio */
    /* object-fit: cover; Cover the available space while maintaining aspect ratio */
    align-self: flex-start;
    /* Align image with the top of the text content */
}

/* Flexbox layout for the content-container */
.content-container2 {
    display: flex;
    /* Flexbox layout for side-by-side content */
    justify-content: space-between;
    /* Space between text content and the image */
    align-items: flex-start;
    /* Align items to the top */
    gap: 20px;
    /* Space between text and the image */
    margin-top: 20px;
    /* Adds a top margin for spacing */
}

/* Styling for the image */
.img2 {
    max-width: 280px;
    /* Adjust the maximum width of the image */
    height: auto;
    /* Maintain the aspect ratio */
    object-fit: cover;
    /* Ensures the image covers the available space */
    align-self: flex-start;
    /* Align the image with the top of the text content */
}

/* Text content container */
.text-content {
    max-width: 70%;
    /* Ensure text content takes up less space than the image */
}

/* Styling for headings, paragraphs, and lists */
.text-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

h3{
    font-size: 24px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-content ul {
    margin-left: 20px;
}

.text-content li {
    font-size: 16px;
    margin-bottom: 10px;
    list-style-type: disc;
}

li{
    list-style-type: disc;
}


/* Main container */
.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Left Menu */
.left-menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 10px;
    border: 2px solid black;
    background-color: #f0f0f0;
}

.left-menu a {
    padding: 8px;
    background-color: lightgray;
    margin-bottom: 5px;
    text-decoration: none;
    color: black;
    text-align: center;
    cursor: pointer;
}

.left-menu a:hover {
    background-color: gray;
    color: white;
}

/* Right Navbar (Initially Hidden) */
.right-navbar {
    display: none;
    flex-direction: row;
    /* Changed to column for better vertical layout */
    /* padding: 20px; */
    border: 2px solid #ddd;
    /* Lighter border for a subtle effect */
    background-color: #ffffff;
    /* Neutral background color */
    width: 100%;
    /* Set a fixed width */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow effect */
    transition: transform 0.3s ease;
    /* Smooth sliding transition */
}

.right-navbar a {
    padding: 12px 20px;
    /* margin: 10px 0; */
    background-color: #fff3cd;
    /* Soft yellow background */
    text-decoration: none;
    color: #555;
    /* Darker text for better contrast */
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* Smooth hover transition */
    border: 1px solid #ddd;
    /* Soft border around each link */
}

.right-navbar a:hover {
    background-color: #f8c94e;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.right-navbar a:active {
    transform: scale(1);
}
.right-navbar:hover {
    transform: translateX(0);
}

#download-message{
    display: none;
}

.download-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #d1e7dd;
    border-left: 5px solid green;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-message img {
    width: 20px;
    height: 20px;
}
.footer {
  background-color: rgb(36, 59, 37);
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 230px;
}

.footer-column h3,
.footer-column h4 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-column i {
  margin-right: 8px;
}

.social-icons a {
  display: inline-block;
  color: #e0e0e0;
  font-size: 22px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff5722;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #444;
  font-size: 13px;
}
