input[type="text"],
input[type="date"],
input[type="number"],
input[type="password"],
input[type="email"],textarea{
  border: 1px solid #bbcdfa !important;
}
input[type="date"]{
  padding: 10px;
}
.container-fluid {
  overflow: auto;
}
.table-bordered,
select.form-control {
  border: 1px solid #adadad;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.dropdown-item{
  color: black !important;
}
.clause-status-icon{
font-size: 1.4rem;
}
.border {
  border: 1px solid #adadad !important;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Force table to display as table on ALL screen sizes - APPLIES TO ALL PAGES */
@media only screen and (max-width: 767px) {
  .table-bordered {
    display: table !important;
    width: 100% !important;
    min-width: 600px !important; /* Force table to be wider than mobile screen */
  }
  
  .table-bordered thead,
  .table-bordered tbody,
  .table-bordered tr,
  .table-bordered th,
  .table-bordered td {
    display: table-row-group !important;
  }
  
  .table-bordered thead {
    display: table-header-group !important;
  }
  
  .table-bordered tbody {
    display: table-row-group !important;
  }
  
  .table-bordered tr {
    display: table-row !important;
  }
  
  .table-bordered th,
  .table-bordered td {
    display: table-cell !important;
    padding: 0.75rem !important;
    vertical-align: top !important;
    border: 1px solid #dee2e6 !important;
    text-align: left !important; /* Force left alignment */
    white-space: nowrap !important; /* Prevent text wrapping */
  }
  
  .table-bordered th:first-child,
  .table-bordered td:first-child {
    text-align: left !important; /* First column left aligned */
  }
  
  /* Prevent any card-like styling */
  .table-bordered th::before,
  .table-bordered td::before {
    content: none !important;
    display: none !important;
  }
  
  /* Ensure table scrolls horizontally on small screens */
  .container-fluid.p-0 {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
  }
}