body {
    background-color: rgb(240, 240, 240) !important;
}

  /* LOGO----------------------------------------------------------TITLE---START-------------- */

.PROJECT-TITLE {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border: 1px solid rgb(79, 25, 25);
  margin-bottom: 5px;
  height: 200px;
  flex-wrap: wrap;
}

.IIT-KGP-LOGO,
.IIT-BOM-LOGO {
  width: 130px;
  height: 165px;
  object-fit: contain;
  margin: 0 30px;
}

.TITLE {
  font-weight: bold;
  font-size: 30px;
  color: rgb(21, 21, 22);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-shadow: 2px 2px 2px rgba(238, 188, 173, 0.856);
  text-align: center;
  flex: 1;
  margin: 0 25px;
}

/* Responsive support */
@media (max-width: 768px) {
  .PROJECT-TITLE {
    flex-direction: column;
    height: auto;
    padding: 15px 10px;
  }

  .IIT-KGP-LOGO,
  .IIT-BOM-LOGO {
    margin: 10px 0;
    width: 100px;
    height: auto;
  }

  .TITLE {
    font-size: 24px;
    margin: 15px 0;
  }
}



.BUTTON-TEXT {
    text-decoration: none;
    color: rgb(5, 2, 25) !important;
}
.HOME-BUTTON {
    height: 35px;
    width: 70px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(248, 219, 219, 0.924);
    border: 2px solid;
    margin-right: 30px;
    box-shadow: 2px 2px 2px rgb(123, 123, 123);
    border-radius: 5px;
    margin-top: 55px;
}
.HOME-BUTTON-TEXT {
    text-decoration: none;
    color: rgb(5, 2, 25) !important;

}







       
    

/* LOGO-----------------------------------------------------------------------TITLE----ENDS HERE-------------------------------------- */

/* Style for overlay */

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .dialog-box {
        background: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 600px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
        text-align: center;
    }

    .dialog-box button {
        margin-top: 20px;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .dialog-box button:hover {
        background-color: #0056b3;
    }



    












/* STRIP-----------------------------------------------------------------------TITLE----STARTS HERE-------- */
.STRIP-BAND {
    height: 60px;
    background-color: rgb(0, 0, 0);
    margin: 0px 5px 5px 5px;
    color: antiquewhite;
    display: flex;
    gap: 10px;
    justify-content: center;

}
.STRIP {
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: auto;
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222222;
    width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(17, 16, 16, 0.2);
    z-index: 1;
    top: 100%; /* Position dropdown below the .STRIP */
    left: 0;
}

.dropdown-content a {
    color:rgb(251, 244, 236);
    padding: 12px 14px;
    text-decoration: none;
    display: block;
    font-size: smaller !important; 
}

.dropdown-content a:hover {
    text-decoration: none;
    background-color:antiquewhite;
    color: rgb(4, 4, 4);
}

.show {
    display: block;
}
.STRIP-STYLE {
    color:antiquewhite;
    text-decoration: none; 

}
    
.STRIP-STYLE:hover {
text-decoration: none;
color:antiquewhite;

}


/* STRIP-----------------------------------------------------------------------TITLE----ENDS EHERE-------- */










/* F L O W -  C H A R T-----------------------------STARTS HERE----------FLOW-CHART-IMG-TEXT----------------------- */

.TEXT {
    color: rgb(10, 10, 10);
    text-shadow: 2px -2px 2px rgb(246, 242, 247);
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-left: 10PX;
 }
 
 /* F L O W -  C H A R T-----------------------------E N D S HERE----------FLOW-CHART-IMG-TEXT---------------------- */
 



/* DYNAMIC FORM STYLES---------------------------------STARTS HERE---------------------------------------------------*/

#wasteManagementForm {
    background-color: #f0f8ee;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #969595;
    border-radius: 8px;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Times New Roman', Times, serif;
}
.H1-TITLE {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
text-align: center;
}
#wasteManagementForm label {
    font-weight: bold;
}
#wasteManagementForm input[type="text"], #bioFractionDialog input[type="text"],
#wasteManagementForm select {
    width: calc(100% - 20px);
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    
}
#wasteManagementForm .submitbutton {
    background-color: #419243;
    color: antiquewhite;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    outline: none;
}
#wasteManagementForm .submitbutton:hover {
    background-color: #114d14;
    color: rgb(247, 247, 247);
    outline: none;

}
button.printButton {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #207793;
    color: rgb(238, 236, 227);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#dialogBox {
    background-color: #373636;
    padding: 40px;
    border: 1.5px solid #ebe1e1;
    border-radius: 8px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -3px 3px 10px rgba(177, 174, 174, 0.825);
    z-index: 1000;
    width: 80%;
    max-width: 600px;
    color: antiquewhite;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;

}
#dialogBox button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f3f6da;
    color: rgb(11, 10, 10);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#dialogBox button:hover {
    color: rgb(12, 12, 12);
    background-color: rgb(254, 201, 182);
    
}




#dialogMessage {
    font-size: 18px;
    font-weight: bold;
    color: antiquewhite;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#output {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 2.5px 2.5px 3.5px rgb(121, 119, 119);
    font-family: 'Times New Roman', Times, serif;
    border: 0.5px solid #646363;

}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
#dialogMessage {
    text-align: left;
}

.output-container {
    display: none; /* Hide the container initially */
    background-color: rgb(238, 236, 236);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align:left;
}

.output-container p {
    font-size: 1em;
    margin: 10px 0;
}









/* DYNAMIC FORM STYLES---------------------------------STARTS HERE---------------------------------------------------*/

#wasteManagementForm {
    background-color: #f0f8ee;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #969595;
    border-radius: 8px;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Times New Roman', Times, serif;
}
.H1-TITLE {
font-size: 30px;
font-weight: 600;
margin-bottom: 15px;
text-align: center;
}
#wasteManagementForm label {
    font-weight: bold;
}
#wasteManagementForm input[type="text"], #bioFractionDialog input[type="text"],
#wasteManagementForm select {
    width: calc(100% - 20px);
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    
}
#wasteManagementForm .submitbutton {
    background-color: #419243;
    color: antiquewhite;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    outline: none;
}
#wasteManagementForm .submitbutton:hover {
    background-color: #114d14;
    color: rgb(247, 247, 247);
    outline: none;

}
button.printButton {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #207793;
    color: rgb(238, 236, 227);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#dialogBox {
    background-color: #373636;
    padding: 40px;
    border: 1.5px solid #ebe1e1;
    border-radius: 8px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -3px 3px 10px rgba(177, 174, 174, 0.825);
    z-index: 1000;
    width: 80%;
    max-width: 600px;
    color: antiquewhite;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;

}
#dialogBox button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f3f6da;
    color: rgb(11, 10, 10);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#dialogBox button:hover {
    color: rgb(12, 12, 12);
    background-color: rgb(254, 201, 182);
    
}




#dialogMessage {
    font-size: 18px;
    font-weight: bold;
    color: antiquewhite;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#organic_output {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 2.5px 2.5px 3.5px rgb(121, 119, 119);
    font-family: 'Times New Roman', Times, serif;
    border: 0.5px solid #646363;

}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
#dialogMessage {
    text-align: left;
}

.output-container {
    display: none; /* Hide the container initially */
    background-color: rgb(238, 236, 236);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align:left;
}

.output-container p {
    font-size: 1em;
    margin: 10px 0;
}

.printButton {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    background-color: #2d5581;
    color: antiquewhite;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.printButton:hover {
    background-color: #0f355e;
    color: white;
}
.output-container h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}
.info-icon {
    float: right;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
    background-color: #f2f2f2;
    color: rgb(29, 29, 31);
    text-align: center;
    font-size: 15px;
    font-weight: bolder;
    cursor: pointer;
    margin-left: 2px;
    position: relative;
    border: 1.8px solid black;
}


.info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 50%;

    left: 50% !important;
    transform: translateX(-50%);
    width: 250px;
    padding: 10px 10px;
    border-radius: 5px;
    background-color: rgb(231, 230, 229);
    color: rgb(0, 0, 0);
    font-size: medium !important;
    text-align: center;
    font-weight: 550 !important;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 2.5px dashed rgb(12, 12, 12);
    white-space: pre-line;
    z-index: 1;
}

.estimate-button {
    float: right;
    padding: 5px 5px;
    font-size: 13px;
    cursor: pointer;
    background-color: #f2f2f2;
    color: #1f1e1e;
    border: 1.75px solid rgb(12, 12, 12);
    font-weight: bold;
    outline: none;
    border-radius: 3.5px;
    margin-bottom: 20px;


}
.estimate-button:hover {
    background-color: #393838;
    color: #f5f3f3;
    outline: none;

}
.estimate-button:focus {
    outline: none; 
}
#dialogBoxForCheck1 {
    display: none;
    position: fixed;
    border-radius: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2.5px solid #3d3d3d;
    box-shadow: 4px 4px 5px rgba(250, 250, 250, 0.922);
    padding: 20px;
    background-color: #f0f8ee;
    z-index: 1000;
    font-size: medium;
}
h3 {
    font-family: 'Times New Roman', Times, serif !important;
    text-align: center;
    font-weight:bolder;
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
    
}
#overlayForCheck1,#overlayForCheck2, #overlayForCheck3{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 500;
}
.checkboxContainer {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: medium;
    font-family: 'Times New Roman', Times, serif !important;
}
.checkboxContainer input {
    margin-right: 10px;
    font-family: 'Times New Roman', Times, serif !important;

}
.checkboxContainer label {
    margin-left: 10px;

}
#selectedCount, #bioFractionDialog p, #PopulationDensityDialog p{
    background-color: rgb(244, 249, 143);
    border-radius: 8px;
    padding: 10px 100px;
    width: 400px;
    font-size: medium;
    text-align: center;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#bioFractionDialog input,#PopulationDensityDialog input{
    width: 350px;
}
.NoteForCheck1{
    background-color: rgba(43, 43, 43, 0.942);
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    font-weight: bold;
    font-size: medium;
    color: antiquewhite;
    font-family: 'Times New Roman', Times, serif;
}
.close-button{
    color : rgb(82, 80, 80);
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(252, 251, 251);
    font-weight: bold;
    border: 2px solid black;
}
.close-button:hover{
    color : rgb(241, 241, 241);
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(5, 5, 5);
    outline: none;
}

.input-container label{
    margin-top: 5px;

}
.input-container input{
    outline: none;
    width: calc(100% - 20px);
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: medium;

}


        
/* DYNAMIC FORM STYLES-------------------------------------ENDS HERE---------------------------------------------------*/


.form-section {
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
}










/* COST-ESTIMATION-------------------------------STARTS------------------------------COST-ESTIMATION--- */


.ESTIMATION-TITLE {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px 2px rgba(247, 219, 166, 0.889);
    margin-bottom: 25px;
}
.ESTIMATION-TITLE {
    font-size: 25px;
    font-weight: bold;

}
.hidden {
    display: none !important;
    margin-bottom: 15px !important;
    }
.BUTTON-BRANCHES {
    margin: 10px 0px !important;
    }

.BUTTON- {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 1px -1px 1.5px rgb(210, 182, 158);
    font-weight: bold;
    font-size: 15px;
    
}
.BACKGROUND-ESTIMATION {
    width: cover;
    height: 350px;
    background-color: rgb(11, 12, 12);
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    color: rgb(221, 222, 223);
    background-image: url(IMAGES/5RSCOIN.png);
    background-size: cover;
    padding: 10px 10px;
}
.BUTTON-M {
    box-shadow: 0.7px -0.7px 1.5px rgb(124, 124, 124);
    font-weight: bold;
    width: 150px;
    height: 35px;
    font-size: 18px;
    border: 2.5px solid rgb(59, 59, 59);
}

.BUTTON-M,
.BUTTON-,
.HOME-BUTTON {
    cursor: pointer;

}
#EDF-T .modal-header .close,
#ECF-T .modal-header .close,
#TDF-T .modal-header .close,
#TCF-T .modal-header .close,
#EDF1 .modal-header .close,
#TDF1 .modal-header .close,
#TCF1 .modal-header .close {
    color: red;
    font-size: 25px;
    font-weight: bold;

}
.close :hover{
    color: rgb(249, 5, 5);
}
.HEAD1 {
    background-color: rgba(31, 30, 30, 0.917);
    color: rgb(224, 224, 225);
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    text-shadow: 0.4px 0.41px 1px wheat;
}
.BODY1, .BODY2, .BODY3, .BODY4 {
    background-color: rgba(212, 208, 208, 0.94);
    color: rgb(1, 8, 29);
    font-size: 13px;

}
.FOOTER1 {
    background-color: rgb(147, 146, 146);
    color: rgb(1, 5, 28);

}
.MODAL1 {
    border: 2px SOLID red;

}
#EDF-T .modal-dialog,
#ECF-T .modal-dialog,
#TDF-T .modal-dialog,
#TCF-T .modal-dialog,
#EDF1 .modal-dialog,
#TDF1 .modal-dialog,
#TCF1 .modal-dialog {
    max-width: 580px;
}
.modal-footer .btn-secondary {
    font-weight: bold;
}

/* Estimate button */
.modal-footer #calculate1,
.modal-footer #calculate2,
.modal-footer #calculate3,
.modal-footer #calculate4 {
    font-weight: bold;
}
.modal-body .result1, 
.modal-body .result2 {
    font-weight: bold;
    font-size: 13.5px !important;
    color: rgb(47, 7, 85) !important;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 0.4px 0.4px 1px rgb(255, 255, 255);
}

.modal-body .result3,
.modal-body .result4,
.modal-body .result5,
.modal-body .result6 {
font-weight: bold;
font-size: 13.5px !important;
color: rgb(47, 7, 85) !important;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-shadow: 0.4px 0.4px 1px rgb(255, 255, 255);
}


#EDF-T .modal-body input[type="text"],
#ECF-T .modal-body input[type="text"],
#TDF-T .modal-body input[type="text"],
#TCF-T .modal-body input[type="text"],
#EDF1 .modal-body input[type="text"],
#TDF1 .modal-body input[type="text"],
#TCF1 .modal-body input[type="text"] {
display: block;
margin-left: 350px; /* Adjust the width of the labels */
margin-top: -20px; /* Adjust vertical alignment as needed */
}

 
.FINAL-RESULT {
    background-color: rgba(241, 254, 0, 0.752) !important;
    padding: 4px 7px !important;
    margin: 5px 4px !important;
    display: inline-block !important;
    border-radius: 5px !important;
    white-space: nowrap;
}
.Cost-Estimation-Titles {
    font-weight: bold;
    text-align: center;
    color: rgb(3, 1, 31) !important;
}

/* COST-ESTIMATION-------------------------------E N D S------------------------------COST-ESTIMATION--- */








/* CONTACT DETAILS- BUSINESS CARD-------------------------CONTACT DETAILS------------ S T A R T ----------*/

/* ========== CONTACT SECTION STYLES ========== */

/* ========== CONTACT / TEAM SECTION STYLES ========== */

.section-divider {
  margin: 40px auto; /* More gap before contact section */
}




.contact-background {
  background-color: rgb(134, 133, 133);
  padding: 50px 20px;

  width: 98vw;        /* Full screen width */
  box-sizing: border-box;
  margin: 0 calc(-50vw + 50%); /* Centers section fullscreen */
}




.contact-title {
  font-size: 28px;
  color: rgb(244, 236, 224);
  text-align: center;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px rgba(60, 60, 60, 0.9);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}


/* Card Design */
.contact-card {
  background-color: rgba(38, 38, 38, 0.95);
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  border-bottom: 10px solid rgb(9, 10, 10);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Profile Image */
.contact-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
}



/* Hover Effect */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 9px 20px rgba(0, 0, 0, 0.65);
}

/* Subtle hover effect on image */
.contact-card:hover img {
  opacity: 0.95;
}

/* Subtle hover effect on image */
.contact-card:hover img {
  opacity: 0.95;
}

/* Text Content */
.contact-text {
  color: rgb(218, 216, 216);
  font-size: 14px;
  line-height: 1.4;
}

/* Name Styling */
.contact-name {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff9ee;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Email Styling */
.contact-text a {
  color: #4da6ffec;
  text-decoration: none;
  font-weight: bold;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Responsive Fix */
@media (max-width: 480px) {
  .contact-card img {
    height: 220px;
  }
}


.cancel-button, .close-button {
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

/* Cancel button style */
.cancel-button {
    background-color: #cccccc;
    color: black;
}
.cancel-button:hover {
    background-color: #aaaaaa;
}






/* Style for  Estimate Dialog for Pupulation Densitiy and  Biodegradable Fraction */

#bioFractionDialog , #PopulationDensityDialog{
    display: none;
    position: fixed;
    border-radius: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2.5px solid #3d3d3d;
    box-shadow: 4px 4px 5px rgba(250, 250, 250, 0.922);
    padding: 20px;
    background-color: #f0f8ee;
    z-index: 1000;
    height: 270px;
    font-size: medium;
    width: 570px;
}
#bioFractionDialog label, #PopulationDensityDialog label{
    margin-top: 40px;
    margin-bottom: 2px;
    font-size: 16px;
}
.check-button{
    background-color: #419243;
    color: antiquewhite;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    border: 2px solid green;
}
.check-button:hover{
    outline:none;
    border:2px solid green;
    background-color: #3a7d3b;  
}
.check-button:focus {
    outline: none; 
}
.segregation{
    margin-right: 320px;
}
#organicWasteQuestion input{
    height: 35px;
}
#city{
    height: 35px;
}
.ward-entry {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.ward-entry input {
  flex: 1;
  min-width: 0; /* Prevent overflow in flex container */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding doesn't affect total width */
}


.effective {
  color: green;
  font-size: 22px;
  font-weight: bold;
}
.non-effective {
  color: red;
  font-size: 22px;
  font-weight: bold;
}

.cancel-button {
    background-color: #cc1b1b;
    color: #000;
    padding: 8px 16px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancel-button:hover {
    background-color: #999;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


/* Style for  PDF */


                /* -------- Screen Styles -------- */
                body {
                    font-family: Arial, sans-serif;
                    padding: 20px;
                    line-height: 1.6;
                    background-color: #f9fbff;
                }

                h2, h3 {
                    text-align: center;
                    color: #072558;
                }

                table {
                    width: 100%;
                    border-collapse: collapse;
                    margin-top: 15px;
                }

                th {
                    background: #d4e9d7; /* Deep Blue Header */
                    color: #ffffff;
                    padding: 10px;
                    font-size: 17px;
                    border: 1px solid #edeef0;
                }

                td {
                    border: 1px solid #c4d3c3;
                    padding: 10px;
                    font-size: 15px;
                    color: #111;
                    background-color: #f5f9fd; /* Light Blue Row */
                }

                tr:nth-child(even) td {
                    background-color: #f9f9fa;
                }

                img {
                    max-width: 120px;
                    height: auto;
                }

                /* -------- Print Styles -------- */
                @media print {
                    body {
                        -webkit-print-color-adjust: exact !important;
                        print-color-adjust: exact !important;
                        background: white !important;
                    }

                    /* Remove table header & cell background colors in print */
                    th, td {
                        background: white !important;
                        color: #000 !important;
                    }

                    .no-print {
                        display: none;
                    }
                }
  

                    /* LCC BUTTON */


                #openLCCEBtn {
  background-color: #0a2e6f;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}
#openLCCEBtn:hover {
  background-color: #083263;
}


/* Eligible Sites heading */
#wardEvaluationResult > strong {
    color: #000000;       /* black text */
    font-weight: 700;     /* bold */
    font-size: 16px;      /* slightly larger for emphasis */
    display: block;
    margin-bottom: 8px;
}

/* All list items text black */
.site-list li {
    color: #000000;       /* black text */
    font-weight: 500;     /* normal weight for regular sites */
    margin: 2px 0;
}

/* Highlight the entire site text with full background */
.site-highlight {
    background-color: #419243;   /* soft green background for professional look */
    color: #ffffff;              /* white text for contrast */
    padding: 6px 12px;           /* padding for clean badge-like appearance */
    border-radius: 6px;          /* rounded corners for aesthetics */
    font-weight: 700;            /* bold text */
    display: inline-block;       /* keep it inline with the text */
    margin: 2px 0;               /* spacing above and below */
}



/* Recommendation text */
.recommend-text {
    margin-left: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #de0808aa;
}

