body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

/* Navbar CSS */
nav {
  background-color: #004286;
  color: #ffffff;
  padding: 10px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  display: none;
}
/*
      .menu-icon {
        display: none; /* Hide menu icon by default 
      }*/

.logo {
  font-size: 1.5em;
  font-weight: bold;
  flex: 2;
  min-width: 0; /* Allow content to shrink */
  /*  border: 1px solid #000;
 background-color: lightblue;*/
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allow menu items to wrap to the next line */
}

.menu li {
  flex: 1; /* Equal width for all menu items */
  text-align: center;
}

.menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #ffffff;
}

.menu li a:hover {
  background-color: #0000ff;
}

/* Media query for smaller screens */
@media screen and (max-width: 600px) {
  .menu li {
    display: none; /* Hide individual menu items */
  }
  .menu-icon {
    display: block; /* Show menu icon */
    text-align: right;
    min-width: 0; /* Allow content to shrink */
    /* border: 1px solid #000; */
  }
  .menu.open {
    display: flex; /* Show the menu when menu-icon is clicked */
    flex-direction: column;
  }
  .menu.open li {
    display: block; /* Show menu items */
  }

  .header {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 10px;
  }
}

/* Home Page Design CSS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px; /* -10px; /* Adjust as needed */
}

.col {
  flex: 0 0 100%;
  padding: 0 5px; /* Adjust as needed */
  box-sizing: border-box;
  margin-bottom: 20px; /* Just for spacing */
}

@media screen and (min-width: 576px) {
  .col {
    flex: 0 0 50%; /* Two columns on screens wider than 576px */
  }
}

@media screen and (min-width: 768px) {
  .col {
    flex: 0 0 33.33%; /* Three columns on screens wider than 768px */
  }
}

@media screen and (min-width: 992px) {
  .col {
    flex: 0 0 33.33%; /* Six columns on screens wider than 992px */
  }
}

/* Add more media queries for larger screens if needed */

.grid-item {
  /*background-color: #f0f0f0;*/
  background-color: #fff;
  padding-bottom: 30px;
  border-radius: 5px;
  position: relative; /* Position relative for absolute positioning of button */
  border: 1px solid red;
}

.grid-item-header {
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px;
  /*  background-color: #cf2e2e;*/
  background-color: #0404b4;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1875rem;
}

.grid-item-links {
  margin-bottom: 10px;
  padding-left: 20px; /* Add indentation to the list */
  list-style-type: none; /* Remove default bullet points */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

.grid-item-links li {
  margin-bottom: 5px; /* Add spacing between list items if needed */
}

.grid-item-links a {
  text-decoration: none; /* Remove underline from links */
  color: blue; /* Change link color if needed */
}

.grid-item-links a:hover {
  color: #ff0000; /* Darker shade of blue on hover */
}

.view-more-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #0000ff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

/* Home page top item CSS*/
.top-item {
  background-color: #0000ff;
  color: #ffffff;
  text-align: center;
  height: 100px;
  padding: 10px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.main-title,
.main-title a {
  font-weight: 700;
  font-family: Georgia, Times, serif;
  text-transform: none;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
}

.main-links {
  font-family: Georgia, Times, serif;
  font-weight: 700;
  font-size: 1.25rem;
}

@media only screen and (max-width: 425px) {
  .top-item {
    height: 80px;
    padding: 10px 0px;
  }
  .main-title,
  .main-title a {
    font-size: 1.5rem;
  }
  .main-links {
    font-size: 1rem;
  }
}

/* Footer CSS */
.footer {
  background-color: #0000ff;
  color: #ffffff;
  text-align: center;
  padding: 10px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer p {
  margin: 0; /* Remove default margin */
  line-height: 1.5; /* Adjust line height */
}

/* Page CSS - Ex result, latest job Page*/

.container-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.page-content {
  background-color: #ffffff;
  /*padding: 20px;*/
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
}

/*.content h1 {
        background-color: blue; /* Adding background color to the header */
/* color: #ffffff; /* Changing text color to #FFFFFF for better visibility */
/*padding: 20px; /* Adding padding to the header */
/* border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        margin-top: 0; /* Removing default margin 
      } */

.content-header {
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px;
  /*  background-color: #cf2e2e;*/
  background-color: #0404b4;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1875rem;
}

.content-link {
  margin-bottom: 10px;
  /*padding: 20px; /* Add indentation to the list */
  list-style-type: none; /* Remove default bullet points */
  margin: 0; /* Remove default margin */
  padding-right: 10px; /* Remove default padding */
}

.content-link li {
  margin-bottom: 5px; /* Add spacing between list items if needed */
}

.content-link a {
  text-decoration: none; /* Remove underline from links */
  color: blue; /* Change link color if needed */
}

.content-link a:hover {
  color: #f40404; /* Darker shade of blue on hover */
}

.facebook-page {
  width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-left: 20px; /* Adjusted margin */
}

@media only screen and (max-width: 1200px) {
  .container-page {
    padding: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .container-page {
    flex-direction: column;
    align-items: center;
  }
  .page-content {
    width: 100%;
  }
  .facebook-page {
    margin-top: 20px;
    margin-left: 0; /* Remove margin on smaller screens */
  }
}

@media only screen and (max-width: 400px) {
  .facebook-page {
    width: 100%;
    margin: 10px;
    padding: 0px;
  }
  .facebook-page h2 {
    padding: 0px 10px;
  }
  .facebook-page p {
    padding: 0px 10px;
  }
  .container-page {
    padding: 20px 10px;
  }
}

/*Article Page CSS */
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
.article-content {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}
.facebook {
  width: 300px; /* Adjust the width as needed */
  margin-left: 20px; /* Add space between the content and Facebook section */
  padding: 20px;
  box-sizing: border-box;
  background-color: #f2f2f2; /* Just for visualization */
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th,
td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
th {
  background-color: #0404b4; /* Just for visualization */
  color: #fff;
}
.important-dates {
  /*padding: 20px;*/
  box-sizing: border-box;
}
.important-dates h2 {
  margin-top: 0;
}
.important-dates ul {
  /*list-style-type: none;*/
  padding: 0;
  padding-left: 20px;
}
.important-dates ul li {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .container {
    justify-content: center;
  }
  .facebook {
    margin-left: 0;
    margin-top: 20px; /* Add space above the Facebook section */
  }
}
@media (max-width: 768px) {
  .facebook {
    width: 100%; /* Make the Facebook section take full width on smaller screens */
  }
}

/* Error Page */

.error-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0px;
  text-align: center;
}
