/* 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;
    }

    /* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}
#form-element-wrapper_2
{
    display: none;
}

.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}

.table1 {
    display: table;
    border-collapse: collapse;
    width: 45%;
    border: 1px solid black;
    border-bottom: 0;
    margin-bottom: 20px;
}

.row1 {
    display: table-row;
}

.cell1 {
    display: table-cell;
    border-bottom: 1px solid black;
    /* padding: 10px; */
    padding-top: 2px;
    padding-left: 2px;
    padding-bottom: 20px;
    width: 100%;
    padding-right:5px; 
}
.blanklinecallout {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
}

td {
    border: 1px solid black;
    padding: 5px;
    padding-top: 0px;
    vertical-align: top;
}
th{
    text-align: start;
    padding-left:5px;
}

/* Ensure checkboxes are aligned properly */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Checkboxsize {  
    width: 14px;  
    height: 14px;  
    background-color: white;  
    border-radius: 5%;  
    vertical-align: middle;  
    border: 1px solid gray;  
    appearance: none;  
    -webkit-appearance: none;  
    outline: none;  
   } 

   .signature-line {
    display: flex;
    justify-content: flex-end; /* Aligns the signature line to the right */
    margin-top: 20px;
    width: 100%;
}

.line {
    width: 330px; /* Length of the line */
    border-bottom: 1px solid black;
    text-align: center;
    margin-right: 10px; /* Adjust spacing if needed */
}

.label1 {
    text-align: center !important;
   
}

@media only screen and (max-width: 768px)
 {
    .header_container {
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
}
.Logo{
    text-align: center;
    margin-bottom: 30px;
}
.table-container {
    display: block;
    overflow-x: auto;
 
    -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
}
.table-container table{
    width:100%;
    min-width:850px;
}
.table1{
    width:80%;
}
 }
 
@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) 

{
    .table1{
        width:50%;
    }}