.activityItems .activity_Item i {
  font-size: 1.4vw;
}

.activity_label {
  /* pointer-events: none; */
  font-size: 1.1vw;
}

.activityItem_meta {
  border-radius: 2px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 2px;
  color: rgb(106, 106, 183);
}

.activityItem_meta table {
  border-collapse: collapse;
  width: 100%;
}

.activityItem_meta table td,.activityItem_meta table th {
  padding: 2px !important;
  font-size: 1vw;
}

.list-tab {
  align-items: center;
}

.sitelevel_links,
.blocklevel_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sitelevel_links button,
.blocklevel_links button {
  background-color: #2B3B5E;
  font-size: 16px;
  color: #fcfcfc !important;
  margin: 1% 0% 2% 1%;
}

.sitelevel_links button:hover,
.blocklevel_links button:hover {
  color: white;
}

.final-cert-table{
  box-shadow: 0 4px 8px rgb(79, 91, 116); 
  border-radius: 20px; 
}

/* certificate tab file content  kkkkk*/
table.cert-table {
  font-family: serif;
  border-collapse: collapse;
  /* /width: 70%; */
  border-style: solid;
  border-color: #ccc;
  box-shadow: 0 4px 8px rgb(79, 91, 116); 
  border-radius: 20px; 
  overflow: hidden;
}
table.cert-table .center {
text-align: center;
}
.tble_heading{
background-color: rgb(79, 91, 116);
}

.cert-table td,
.cert-table th {
  width: calc(70% / 7);
  border: 1px solid #36b9c259; 
  padding: 8px;
  font-weight: bold;



}
tr.head_height {
  height: 45px;
}

.cert-table th {
  font-size: 15px;


}

.cert-table tbody tr:not(:first-child):hover {
  background-color: rgb(157, 167, 179);
}
/* jjjjj */
.tb-bg-color {

  background: lightgray;

}

.left_intend {
  text-align: left !important;
  padding-left: 2% !important;
}

.text_intend {
  text-align: left !important;
  padding-left: 3% !important;
}

/* .cert-table tr:nth-child(even) {
    background-color: #dddddd;
  } */
.report_tab_cont th, .report_tab_cont td {
  font-size : 1.117em !important;
}
.ens_certificate {
  width: 100%;
}

ul.certificatetab {
  width: 100%;
}

ul.chaptertab {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.certificatetab li{
  flex: 1;
}

.chaptertab li {
  width : 20%;
  display: flex;
  align-items: center;
}
.chaptertab li:hover {
  border : 1px solid white;
  border-radius: 5px 5px 0px 0px;
}
.chaptertab li a{
  border : none !important;
}

.certificatetab li a, .chaptertab li a {
  color: #00293f !important;
  text-align: center;
  width: 100%;
  font-size: 1.1vw;
}

.chaptertab li a span {
  display: block; /* Makes each span appear as a block, stacking vertically */
  text-align: center; /* Centers the text inside the span */
}

.chaptertab li a img {
  display: block; /* Ensures the image aligns properly */
  margin: 0 auto; /* Centers the image horizontally */
}

.certificatetab li.active, .chaptertab li.active {
  border-bottom: 2px solid #00293f;
  background-color: #fff;
}

/* .download_cert {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
} */

.fa-pen {

  cursor: pointer;
}

/* css for chapters cards start */
.flip-card {
  background-color: transparent;
  width: 10vw;
  height: 10vh;
  aspect-ratio: 1;
  perspective: 1000px;
}

.mar_lft {
  margin-left: 7%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 15px;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Hover Effect */
.flip-card:hover .flip-card-inner {
  border: 1px solid rgb(79, 91, 116); /* Add a border when hovered */
  box-shadow: 0 0 8px rgb(79, 91, 116); 
}

/* Hover Flip Animation */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Keep card flipped when clicked */
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  box-sizing: border-box;
}

.flip-card-front {
  background-color: rgb(251, 252, 255);
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.flip-card-back {
  /* background-color: #f9f9f9; */
  background-color: #f3f7e5;
  transform: rotateY(180deg);
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-back p {
  margin: 2px 0;
  font-size: 1rem;  /* Responsive based on the root font size */
  opacity: 0.9;
  color: black;
}

@media (min-width: 576px) {
  .flip-card-back p {
    font-size: 1.1rem;  /* Slightly larger font for medium devices */
  }
}

@media (min-width: 768px) {
  .flip-card-back p {
    font-size: 1.2rem;  /* Larger font for larger devices */
  }
}

@media (min-width: 992px) {
  .flip-card-back p {
    font-size: 1.3rem;  /* Even larger font for large devices */
  }
}


/* .chp_text{
  font-size: 5vw;
} */
/* .apply-to-all-blocks{
  display: flex;
  justify-content: center;
  align-items: center;
}

.apply-to-all-blocks .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.apply-to-all-blocks .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.apply-to-all-blocks .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 20px;
}

.apply-to-all-blocks .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.apply-to-all-blocks input:checked + .slider {
  background-color: #2B3B5E;
}

.apply-to-all-blocks input:checked + .slider:before {
  transform: translateX(20px);
} */


.apply-to-all-blocks{
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.apply-to-all-blocks .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.apply-to-all-blocks .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.apply-to-all-blocks .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 20px; /* Rounded edges */
}

.apply-to-all-blocks .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%; /* Circular knob */
}

.apply-to-all-blocks input:checked + .slider {
  background-color: #2B3B5E; /* Active color */
}

.apply-to-all-blocks input:checked + .slider:before {
  transform: translateX(20px); /* Move knob */
}


/* css for chapters cards end */