.price-enquiry-cls th {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    padding-left: 20px !important;
    padding-right: 40px !important;
}

.custom-input-dsg {
    width: 92px !important;
    border: 1.5px solid #D5D5D5;
    padding: 3px 8px;
}

.custom-input-smoq {
    width: 115px;
    border: 1.5px solid #D5D5D5;
    padding: 3px 8px;
}

.table>:not(:first-child) {
    border-top: none !important;
}

/* Container for the date picker */
.date-picker-container {
    position: relative;
    display: inline-block;
    border: 1px solid #D5D5D5;

  }
  
  /* Wrapper for the date picker input */
  .react-datepicker-wrapper {
    width: 100%;
  }
  
  /* Input container styling */
  .react-datepicker__input-container input {
    width: 100%;
    padding: 8px 40px 8px 12px; /* Adjust padding to make space for the calendar icon */
    font-size: 16px;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
    outline: none;
    box-sizing: border-box; /* Ensures padding is included in the width */
  }
  
  /* Styling the calendar icon */
  .calendar-icon {
    position: absolute;
    right: 10px; /* Position the icon to the right */
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px; /* Adjust the size as needed */
    color: #333; /* Change color if needed */
    pointer-events: none; /* Prevent interaction with the icon */
  }
  
  button.btn.sub-btn.custom-sub-enq-btn.btn.btn-primary {
    background-color: #247395;
    border: 1px solid #247395;
    outline: none;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none; 
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

input[type="checkbox"]:disabled {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid red;
  background-color: #ff000030;
  cursor: not-allowed;
}

/* input[type="checkbox"].custom-data-drpdn:disabled {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #247395;
  background-color: #247395;
  color: #fff;
  cursor: not-allowed;
} */

textarea.modal-txt-custom {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  outline: none;
  resize: none;
}


.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px; 
  width: 18px;
  background-color: #ccc; 
  border: 1px solid #247395;
}

input:checked ~ .checkmark {
  background-color: #fff; 
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px; /* Adjust the position */
  top: 2px; /* Adjust the position */
  width: 5px; /* Width of the tick */
  height: 10px; /* Height of the tick */
  border:solid #247395; /* White tick */
  border-width: 0 2px 2px 0; /* Create a tick shape */
  transform: rotate(45deg); /* Rotate to form a tick */
}

input:checked ~ .checkmark:after {
  display: block; /* Show the tick when checked */
}
.sup-modal {
  text-align: center;
}
.sup-modal img {
  width: 125px;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  top: 3px;
  border: 1px solid #247395;
  background: #fff;
  border-radius: 0px;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"]:checked {
  background-color: #247395;
  border-color: #247395;
}

input[type="checkbox"]:checked::after {
  content: '✔';
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
