

/* General body and typography */
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

h2, h1 {
  font-family: "Concert One", sans-serif;
  color: #38514e;
}

/* Sidebar Styles */
.sidebar {
  height: 100%;
  width: 255px; /* Slightly wider sidebar for better spacing */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #999999;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidebar a {
  padding: 10px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #000000;
  display: block;
  transition: color 0.3s ease;
  font-family: "Concert One";
}


/* Main content styles */
.main {
  margin-left: 220px; /* Adjusted for wider sidebar */
  padding: 20px;
}

.container {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: 0;
}

.container h2 {
  font-size: 36px;
  margin-left: 0;
}

.container p {
  font-size: 18px;
  color: #555;
  margin-left: 0;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  background-color: #38514e;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Sidebar */
@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {
    float: left;
    width: 100%;
  }
  .main {
 /*    margin-left: 0; */
  }
  footer {
    position: relative;
  }
}

@media screen and (max-height: 768px) {
  .sidebar { padding-top: 15px; }
  .sidebar a { font-size: 18px; }
}

.font {
  font-family: "Bangers";
}


/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: green;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

@media screen and (max-width: 768px) {

  .font {
    font-family: "Mogra";
  }
}

/* Dropdown is hidden when this class is applied */
.hidden {
  display: none;
}

/* Optional styling for the dropdown container when visible */
.dropdown-container {
  display: block;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

/* Optional styling for the active button */
.dropdown-btn.active {
  background-color: #ddd;
}

.link-container {
  display: flex; /* Enables flexbox */
  align-items: center; /* Vertical centering */
  justify-content: space-between; /* Space between link and image */
}

.link-container img {
  margin-left: 1px; /* Add space between the link and the image */
  height: 40px; /* Set the image height */
  width: 80px; /* Set the image width */
}

a {
  text-decoration: none; /* Optional: Remove underline */
  color: inherit; /* Ensure link inherits color */
  font-size: 1em; /* Adjust font size */
}

/* Styles for the popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
.center-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


container {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: 260px;
}
