@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* .consult-page {
  margin: 0 auto;
  width: 95%;
} */

.container {
  display: flex;
}

.compliance-left {
  color: white;
  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);
}

.sm-div {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.sm-links {
  color: white;
  text-decoration: none;
  font-size: 19px;
}

.sm-links :hover {
  color: rgb(222, 220, 220);
}

.logout-button a {
  text-decoration: none;
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 400;
}

.logout-button a:hover {
  color: #dbd7d7;
}

.sidelogo img{
  height: 80px;
  width: 90px;
  margin-left: 10px;
}
.menu-icon img{
  height: 50px;
  width: 95px;
}

.compliance-header-info ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
}

.compliance-header h2 {
  font-size: 30px;
  color: #2f2f2f;
}

.compliance-header-info ul li a {
  font-size: 25px;
  color: #033a70;
}
.compliance-right {
  width: 100%;
  margin: 0px 40px;
}
.compliance-header {
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #033a70;
 
}

.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;
}


.c-header {
  margin: 20px 0px;
  font-size: 25px;
  font-weight: 500;
  color: #212121;
  text-align: left;
}
.c-calender{
  box-shadow: 0 2px 5px rgba(0, 0, 0, 1.1);
  border-radius: 15px;
}

.calendar {
  width: 350px;
  margin: 10px 0px;
  border: 2px solid rgba(1, 29, 59, 1);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);

}

.calendar-header {
  background-color: #fff;
  color: #2f2f2f;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  position: relative;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.nav-buttons button {
  background: none;
  border: none;
  color: #2f2f2f;
  font-size: 18px;
  cursor: pointer;
}

.calendar-body {
  padding: 10px;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
  color: #333;
}

.days div {
  padding: 10px;
  background: #f4f4f9;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.days div:hover {
  background: #007bff;
  color: white;
}

.days div.disabled {
  color: #ccc;
  cursor: default;
}

.c-score {
  width: 350px;
  height: 300px;
  margin: 10px 0px;
  border: 2px solid rgba(1, 29, 59, 1);
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  
}

.com-main {
  display: flex;
  gap: 30px;
  justify-content: space-around;
}

.c-score p {
  font-size: 24px;
  color: #022c56;
  text-align: center;
}
.c-score {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.c-score img {
  width: 153px;
}

.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 10px;
  color: rgba(1, 29, 59, 1);
  font-weight: 600;
}

.learn-more {
  color:rgba(1, 29, 59, 1);
  text-decoration: none;
}


.sidebar-toggle a{
  text-decoration: none;
  color: #000;
}


      /* Mobile view styling */
      @media only screen and (max-width: 768px) {

        .compliance-left {
          position: fixed;
          left: -200px; /* Hide sidebar by default */
          height: 100vh;
          transition: left 0.3s ease;
          z-index: 1000;
        }
      
        .compliance-left.show {
          left: 0; /* Show sidebar when toggled */
        }
      
        .compliance-right {
          width: 100%; /* Take full width */
          margin-left: 0; /* Reset margin for full width */
        }
      
        .menu-icon {
          display: block; /* Ensure the menu icon is visible on mobile */
          cursor: pointer;
        }
        .compliance-right {
          margin: 0;
        }
        .consult-header-info ul li a img {
          height: 35px;
          width: 36px;
      }
      .consult-header-info ul {
        gap: 10px;
    }
  
  .com-main {
    flex-wrap: wrap;
   
  }
  .c-header {
    margin: 20px 10px;
    font-size: 20px;
    font-weight: 500;
    color: #212121;
    text-align: left;
    }
    .compliance-right {
      margin: 0px;
    }
  }



  


/* 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;
}



/* 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;

}