.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 10vh;
  background-color: var(--primary);
  top: 0;
  position: sticky;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 999;
}

.header-left {
  display: flex;
  align-items: center;
  color: var(--text-white);
  gap: 0.5rem;
}
.header-left p {
  padding: 0;
  margin: 0;
}

.header-left p:nth-child(1) {
  text-decoration: underline;
  font-weight: bold;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list ul {
  list-style-type: none;
  display: flex;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  color: var(--text-white);
}
.nav-list ul li a {
  cursor: pointer;
  text-decoration: none;
  color: var(--text-white);
}

.burger-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-list ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  color: var(--text-white);
}
.burger-list ul li a {
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  padding: 0.3rem;
  color: var(--text-primary);
}

.burger-list ul li a:hover {
  background-color: var(--text-yellow);
}

.header img {
  width: 4rem;
  height: 4rem;
}

#navbar li a.active {
  color: var(--text-primary);
  background-color: var(--text-white);
  padding: 0.5rem;
  border-radius: 4px;
}

.burger {
  color: white;
  cursor: pointer;
  display: none;
}
.barHeader {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.barHeader img {
  width: 2rem;
}
.barHeader h5 {
  padding: 0;
  margin: 0;
}

.pdf-container {
  width: 800px;
  height: 500px;
  max-width: 100%; /* Make it responsive */
  overflow: hidden;
}

.pdf {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  .nav-list {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media only screen and (max-width: 850px) {
  .pdf-container {
    width: 100%;
    height: 300px; /* Adjust height as needed for smaller screens */
  }
}

@media only screen and (max-width: 750px) {
  .dashboard #desktopBanner {
    display: none;
  }
  .dashboard #mobileBanner {
    width: 100%;
    display: block;
  }
}

@media only screen and (max-width: 700px) {
  .footer-inside {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-direction: column;
  }
}

@media only screen and (max-width: 560px) {
  .header img {
    width: 3rem;
    height: 3rem;
  }
  .header-left p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 530px) {
  .dashboard img {
    display: none;
  }

  .COA img {
    width: 20rem;
  }

  .footer-inside {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media only screen and (max-width: 500px) {
  .header {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 420px) {
  .header img {
    width: 3rem;
    height: 3rem;
  }
  .header-left p {
    font-size: 0.75rem;
  }
}

@media only screen and (max-width: 350px) {
  .select-first {
    padding: 2rem 2rem !important;
  }
  .COA img {
    width: 15rem;
  }
}
