/* Hide Submit Button */
.form-submit-button {
    display: none !important;
  }
  
  /* Hide Print Button */
  #print-preview {
    display: none !important;
  }
  /* Hiding Language dropdown*/
  
  #form-element-wrapper_1{
      visibility: hidden !important;
    }
#form-element-wrapper_2{
    display: none;
}
    /* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}

.form-container {
    position: relative;
    width: 100%;
    overflow: visible !important;
}

.form-container .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    font-size: 30px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.20);
    white-space: normal;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    text-align: center;
    width: 100%;
}
.hidden-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.mainTable {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid black;
    margin-top: 3px;
}
.mainTable td {
    border: 2px solid black;
    height: 25px;
    padding: 3px;
    padding-inline-start: 5px;
}
.subtable td {
    padding-inline: 15px;
}

.blank-line {
        display: inline-block; 
        border-bottom: 2px solid black;
        width: 20%;       
        vertical-align: text-bottom;
        margin-inline-start: 5px;
       }
.blanklinecallout {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.checkbox-align {
    margin-inline-start: 10px;
}
.cText {
    margin-inline-start: 10px;
    margin-inline-end: 10px;
    padding-top: 3px ;
}
.Checkboxsize {
   width: 14px;
   height: 14px;
   background-color: white;
   border-radius: 5%;
   border: 1px solid black;
   appearance: none;
   -webkit-appearance: none;
   outline: none;
   cursor: pointer;
   margin-right: 8px;
   margin-left: 5px !important;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0px 0;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 5px;
    flex-shrink: 0;
}
.checkbox-label1 {
    line-height: 1.4;
    flex: 0;
    white-space: nowrap;
}
.no-border td {
    border: none !important;
    padding-top: 10px;
    padding-inline-start: 15px;
}
/*for contents which have labels followed by lines*/
.line-flex {
    display: flex;
    gap: 5px;
}
.line {
    flex-grow: 1;
    border-bottom: 2px solid black ;
    height: 1.2em;
}

.telephone_no {
    width: 300px; 

}
/*CSS for address block where blank lines provided for filing address*/
.address-flex {
    display: flex;
    align-items: flex-start;
}
.address-label {
    flex-shrink: 0;
    width: 250px;
    line-height: 1.4;
    padding-top: 5px;
}
.address-lines {
    flex-grow: 1;
    width: 100%;

}
.address-lines div {
    border-bottom: 2px solid black ;
    height: 1.2em;
    margin: 5px 0;
}
/*CSS for box inside the table to mention Dept use only*/
.dept-box {
    border: 2px solid black;
    border-bottom: none;
    height: 100%;
    border-inline-end: none;
    margin-inline-end: -5px;
}
.dept-box-contents {
    margin-inline-start: 5px; 
}

.box-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    border-bottom: 2px solid black;
    padding-bottom: 4px;
}
 @media only screen and (max-width: 768px)
 {
    .responsive-table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
        }
    
    .responsive-table-container table {
            width: 100%; /* Ensure table takes up the full width of the container */
            min-width: 850px; /* Set a minimum width to maintain table readability */
        }
    .header_note { 
            width: 100%;
            margin-inline-start: 0px;
        }
    .form-container .watermark{
        font-size: 20px;
        font-weight: 20px;
        text-align: center;
        width: 90%;
        background: transparent;

    }
}

 /* ipad mini*/
 @media only screen 
 and (min-device-width: 768px) 
 and (max-device-width: 768px) 
 and (min-device-height: 1024px) 
 and (max-device-height: 1024px) 
 and (-webkit-min-device-pixel-ratio: 1) {
    .responsive-table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
        }
    
    .responsive-table-container table {
            width: 100%; /* Ensure table takes up the full width of the container */
            min-width: 850px; /* Set a minimum width to maintain table readability */
        }
     .form-container .watermark{
        font-size: 40px;
    }
 }

