* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,body {
    font-family: Arial, sans-serif;
    height: 100%
  }
  
  .container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 5rem;
  }
  
  .sidebar {
    color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 10px;
  width: 170px;
  background-color: rgba(1, 29, 59, 1);
  ;
  border-radius: 0px 30px 30px 0px;
  box-shadow: 7px 0px 100px 0px rgba(1, 29, 59, 0.5);
  }
  
  .sidebar .logo img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .middle-icon {
    margin: auto 0;
    font-size: 40px;
    color: white;
  }
  
  .social-logout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .social-links a {
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
  
  .logout a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logout a i {
    margin-right: 10px;
  }

  
  .sidelogo img{
    height: 80px;
    width: 90px;
    margin: 0 14px;
  }
  .menu-icon img{
    height: 50px;
    width: 95px;
  }
  

  
.consult-header-info ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
}

.consult-header-info ul li a {
  font-size: 25px;
}

.consult-header-info ul li a img{
  height: 50px;
  width: 50px;
}



.top-bar .back {
  display: flex;
  align-items: center;
}

.top-bar .back i {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.top-bar h1 {
  font-size: 24px;
}

.top-bar .icons i {
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.divider {
  height: 1px;
  background-color:rgba(1, 29, 59, 1);
  margin-bottom: 20px;
}
  main {
    
    width: 80%;
    padding: 20px;
  }
  
  .top-bar , .search-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 24px;
  }
  
 button{
  border: none;
  background-color: transparent;
 }
  button a{
    text-decoration: none;
   
    border: none;
    font-size: 20px;
    margin-right: 35px;
    padding: 5px 10px;
    cursor: pointer;
    color: rgba(1, 29, 59, 1);
    font-weight: 600;
  }
.active{
    color: rgba(254, 207, 15, 1);
  }
  
  header .search-bar {
    border: 2px solid rgba(1, 33, 66, 1);
    border-radius: 15px;
    padding: 12px;
    width: 270px;
  }
  
 
  .search-span{
  position: relative;
    right: 39px;
    top: 5px;
}
.search-span img{
  width: 18px;
}

.score-container {
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  border-radius: 5px;
}
.item {
  display: flex;
  margin: 20px 0px;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  margin-bottom: 10px;
  border: 2px solid rgba(1, 29, 59, 1);
  border-radius: 15px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
}

.due-date {
  font-weight: bold;
  color: rgba(1, 29, 59, 1);
  padding: 22px;
  border-radius: 0px 8px 8px 0px;
  border-right: 2px solid #022c56;
}

.description {
  flex: 1;
  margin: 0 15px;
  color: rgba(1, 29, 59, 1);
  font-weight: 600;
}


span p{
font-weight: 500;
font-size: 14px;
margin: 10px;
}
  
.yellow{
  background: rgba(254, 207, 15, 1);
  border-radius: 8px 8px 8px 8px;
  border: 2px solid rgba(1, 29, 59, 1);
}
.white{
  background: rgba(231, 231, 231, 1);

}
.red{
  background: rgba(241, 15, 15, 1);
  color: rgba(255, 255, 255, 1);
  border-radius: 8px 8px 8px 8px;
  border: 2px solid rgba(1, 29, 59, 1);
}
.blue{
  background: rgba(1, 29, 59, 1);
  border-radius: 8px 8px 8px 8px;
  border: 2px solid rgba(1, 29, 59, 1);
  color: rgba(254, 207, 15, 1);
}

@media only screen and (max-width: 768px) {

  .sidebar {
    position: fixed;
    left: -200px; /* Hide sidebar by default */
    height: 100vh;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.show {
    left: 0; /* Show sidebar when toggled */
  }

  .sidebar{
    width: 170px;
    margin-left: 0; /* Reset margin for full width */
  }

  .menu-icon {
    display: block; /* Ensure the menu icon is visible on mobile */
    cursor: pointer;
  }
  .sidebar {
    margin: 0;
  }
  .consult-header-info ul li a img {
    height: 35px;
    width: 36px;
}
.consult-header-info ul {
  gap: 20px;
}
.consult-right {
  margin: 0;
}
.search-btns{
  gap: 12px;
  flex-direction: column;
}
button a {
 
  margin-right: 0;
  
}
main {
    
  width: 100%;
  padding: 0;
}


}

.back a{
  text-decoration: none;
  color: black;
}



/* Popup Container */
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background-color:rgba(1, 33, 66, 0.1);
  border-radius: 12px;
  width: 700px;
  text-align: center;
  color: #fff;
  padding: 30px;
  backdrop-filter: blur(100px);

  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);
  
}

/* Logo Section */
.logo-box img {
  width: 300px;

}

/* Confirmation Text */
.confirmation-text {
  font-size: 33px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

hr {
  border: none;
  height: 2px;
  background-color: #fff;
  width: 18%;
  margin: 11px auto 30px;
}

/* Button Group */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.popup-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background-color: #4b4b4b;
  color: #fff;
  transition: background-color 0.3s ease;
}

.popup-btn:hover {
  background-color: #636363;
}

.confirm {
  background-color: rgba(254, 207, 15, 1);
  color: #000;
}
.confirm a{
  text-decoration: none;
  color: #000;
}
.confirm:hover {
  background-color: #ffda33;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
}

.social-icons a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f6c708;
}



.menu-icon-bar{
  position: relative;
  top: 3rem;
  left: 1rem;
  display: none;
}

.menu-icon-bar i{
  font-size: 28px;
  color: #fff;

}