html
body
h1
h2
h3
h4
h5
/* th
tr */
/* td */
/* a */
.panel-heading
.control-label
/* .panel-body */ {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif !important;
  color: #252525 !important;
}
/* .panel-body{
  font-size: 14px;
} */
/* #basic-datatable {
  border: 1px solid black;
} */

/* #basic-datatable th,
#basic-datatable td {
  border: 1px solid black;
} */
hr {
  margin-top: 40px;
  margin-bottom: 20px;
  border-top: 1px solid #252525 !important;
}

#routingModal.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

#routingModal .modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#routingModal .modal-body {
  padding: 0px;
}

#routingModal .modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

#routingModal .modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

#routingModal .modal-subtitle {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

#routingModal .job-id {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

#routingModal .job-name {
  color: #555;
  padding: 4px 0;
}

#routingModal .info-card,
#routingModal .action-card {
  background: #f9fafb;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
}

#routingModal .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 15px;
}

#routingModal .status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

#routingModal .status-badge.dtp {
  background: #3b82f6;
}
#routingModal .status-badge.qa {
  background: #10b981;
}
#routingModal .status-badge.print {
  background: #f59e0b;
}

#routingModal .status-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

#routingModal .detail-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
}

#routingModal .detail-label {
  color: #6b7280;
  font-size: 13px;
  padding: 4px 0;
}

#routingModal .detail-value {
  color: #111827;
  font-weight: 500;
  font-size: 13px;
  padding: 4px 0;
}

#routingModal .datetime {
  font-family: monospace;
  color: #1e40af;
}

#routingModal .detail-value.has-data {
  color: #1e40af;
  font-weight: 600;
}

#routingModal .datetime.has-data {
  font-family: monospace;
  letter-spacing: 0.5px;
}

#routingModal .form-group {
  margin-bottom: 15px;
}

#routingModal .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

#routingModal .form-select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background-color: white;
  font-size: 14px;
  transition: border 0.2s;
}

#routingModal .form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#routingModal .form-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
}

#routingModal input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

#routingModal .form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#routingModal .modal-footer {
  display: flex;
  justify-content: space-between;
  /* gap: 10px; */
  margin-top: 20px;
}

#routingModal .btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

#routingModal .btn-primary {
  background: #3b82f6;
  color: white;
}

#routingModal .btn-primary:hover {
  background: #2563eb;
}

#routingModal .btn-secondary {
  background: #f3f4f6;
  color: #4b5563;
}

#routingModal .btn-secondary:hover {
  background: #e5e7eb;
}

#routingModal .icon-check,
#routingModal .icon-close {
  font-size: 16px;
}

#imagePreviewModal {
  z-index: 99999;
}

#closeUploadBtn {
  position: absolute;
  top: 15px;
  right: 12px;
}

#templateModal,
#doFormModal {
  z-index: 99999;
}

#templateModal #closeTemplate {
  position: absolute;
  top: 15px;
  right: 18px;
}

.jobsheet_container_title {
  border: 1px solid;
  width: 40%;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  padding: 6px;
  margin-bottom: 30px;
}

.jobsheet_container_title_box {
  display: flex;
  justify-content: center;
}

.width-45 {
  width: 45%;
}

.flex-direction-row {
  display: flex;
  flex-direction: row;
}

.flex-direction-column {
  display: flex;
  flex-direction: column;
}

.gap-10 {
  gap: 10px;
}

.space-between {
  justify-content: space-between;
}

.jobsheet-form {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.jobsheet-form .container {
  display: flex;
  gap: 20px;
  width: auto;
}

.jobsheet-form .form-card {
  border-color: black !important;
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid;
}

.jobsheet-form .form-card h3 {
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 6px;
}

.jobsheet-form .form-group {
  margin-bottom: 15px;
}

.jobsheet-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.jobsheet-form input[type="text"],
.jobsheet-form select,
.jobsheet-form textarea,
.jobsheet-form input[type="date"],
.jobsheet-form input[type="time"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.jobsheet-form .inline-group {
  display: flex;
  gap: 10px;
}

.jobsheet-form .checkbox-group {
  margin: 10px 0;
}

.jobsheet-form .table-section {
  margin: 30px auto;
  width: 95%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-color: black;
  border: 1px solid;
}

.jobsheet-form table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.jobsheet-form table th {
  padding: 10px;
  text-align: center;
}

/* .jobsheet-form table th, */
.jobsheet-form table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.jobsheet-form table th {
  background-color: #f2f2f2;
}

.jobsheet-form .upload-section {
  text-align: center;
  margin: 30px auto;
  width: 95%;
}

.jobsheet-form .upload-box {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 30px;
  background-color: #f9f9f9;
  cursor: pointer;
}

.jobsheet-form .footer-buttons {
  text-align: end;
  margin-top: 30px;
}

.jobsheet-form .footer-buttons button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 30px;
  background-color: #2c3e50;
  color: white;
  cursor: pointer;
}

.jobsheet-form .footer-buttons button:hover {
  background-color: #1a242f;
}

.add-new-btn {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 30px;
  background-color: #2c3e50;
  color: white;
  cursor: pointer;
}

.jobsheet-form .table-container {
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.jobsheet-form .table-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.jobsheet-form .table-section table {
  width: auto;
  min-width: 100%;
  white-space: nowrap;
}

.jobsheet-form table .bottom-border-input {
  border: none; /* Remove all borders */
  border-bottom: 1px solid #ccc; /* Add only bottom border */
  outline: none; /* Remove focus outline (optional) */
  width: 100%; /* Take full width of the cell */
  padding: 5px 0; /* Add some padding */
  margin: 5px; /* Space between input and select */
  background: transparent; /* Optional: Remove background */
  color: black;
}

.jobsheet-form .bottom-border-select {
  border: none; /* Remove all borders */
  border-bottom: 1px solid #ccc; /* Add only bottom border */
  outline: none; /* Remove focus outline (optional) */
  width: 100%; /* Take full width of the cell */
  padding: 5px 0; /* Add some padding */
  background: transparent; /* Optional: Remove background */
  -webkit-appearance: none; /* Remove default arrow in Chrome/Safari */
  -moz-appearance: none; /* Remove default arrow in Firefox */
  appearance: none; /* Remove default arrow in modern browsers */
  color: black;
}

.upload-area {
  border: 2px dashed #ccc;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  width: auto;
  margin-left: 40px;
  margin-right: 40px;
}

.upload-area.dragover {
  background-color: #f0f0f0;
}

#preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-item {
  width: 100px;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-size: 12px;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item {
  position: relative;
}

.btn-purple {
  background-color: #41444a !important;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #41444a !important;
  border-color: #41444a !important;
  padding: 5px 40px;
}
.btn-purple:active {
  background-color: #41444a !important;
  border-color: #41444a !important;
  border: 1px solid #41444a !important;
}
.btn-purple:focus {
  background-color: #41444a !important;
  border-color: #41444a !important;
  border: 1px solid #41444a;
}
.btn-purple:hover {
  background-color: #41444a !important;
  border-color: #41444a !important;
  border: 1px solid #41444a !important;
}
.btn-purple::after {
  background-color: #41444a !important;
  border-color: #41444a !important;
  border: 1px solid #41444a !important;
}
.completed .tooltips {
  padding: 5px 40px;
  background-color: #e6f7e6; /* Very light green background */
  color: #2e7d32; /* Dark green text */
  border-radius: 30px;
  font-weight: 600;
}

.pending .tooltips {
  padding: 5px 40px;
  background-color: #ffebee; /* Very light red background */
  color: #c62828; /* Dark red text */
  border-radius: 30px;
  font-weight: 600;
}

.progress .tooltips {
  padding: 5px 40px;
  background-color: #e3f2fd; /* Very light blue background */
  color: #1565c0; /* Dark blue text */
  border-radius: 30px;
  font-weight: 600;
}
#convertJobsheetModal,
#importExcelModal,
#importProductExcelModal {
  z-index: 9999;
}
.panel.panel-default {
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  border: none;
  padding: 8px;
}

.dashboard-body-select-form {
  border: none;
  margin-bottom: 50px;
}
.quotation-panel {
  margin-bottom: 50px;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #41444a !important;
  border-color: #41444a !important;
  border-radius: 5px;
}

.ui-search-input {
  border-radius: 5px !important;
  border-color: #616264;
}
.ui-search-input:focus {
  border-radius: 5px !important;
  border-color: #616264 !important;
  box-shadow: none;
}
.select2-selection__rendered {
  display: block;
  border-radius: 20px;
  color: #333;
  font-size: 12px;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.select2-container--focus .select2-selection__rendered,
.select2-container--open .select2-selection__rendered {
  border-color: #616264 !important;
  box-shadow: none !important;
  outline: none !important;
}
.select2-container--default .select2-selection--single {
  border-radius: 5px;
  border-color: #616264;
  margin-bottom: 10px;
}
.select2-container--default .select2-selection--multiple {
  margin-bottom: 10px;
  border-radius: 5px;
  border-color: #616264;
}
.form-control {
  border-radius: 5px;
  border-color: #616264;
  margin-bottom: 10px;
}

.form-control .content {
  border-radius: 10px;
}
.panel.panel-default .form-control .selectpicker .customer {
  border-radius: 10px;
}
.form-control .datepicker {
  border-color: #616264;
  color: #fff;
}
.main_order_list_box .panel-heading {
  padding: 10px 15px !important;
  border-bottom: 1px solid transparent !important;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  max-width: fit-content !important;
  border-radius: 10px !important;
  margin-left: 20px !important;
  margin-top: 20px !important;
  justify-content: center;
}

/* .main_order_list_box .panel-body{
  padding: 10px;
} */
.main_order_company_box .panel-heading {
  max-width: fit-content !important;
  border-radius: 10px;
}
.form-horizontal .form-group {
  margin-right: 10px;
  margin-left: 10px;
}

#product_remark {
  border-radius: 10px;
  padding: 10px;
}

/* order status styling */
/* .order_pending{
  background-color: #f49e9e;
  color:rgb(231, 11, 11);
} */
/* .order_completed{
  padding: 5px 40px;
  background-color: #cef2bf;
  color:rgb(46, 206, 10);
  border-radius: 30px;
} */
.order_completed .tooltips {
  padding: 5px 40px;
  background-color: #cef2bf;
  color: rgb(41, 213, 3);
  border-radius: 30px;
}
.order_invoice-and-delivery-order .tooltips {
  padding: 5px 40px;
  background-color: #cef2bf;
  color: rgb(41, 213, 3);
  border-radius: 30px;
}
.order_pending .tooltips {
  padding: 5px 40px;
  background-color: #afbbf1;
  color: rgb(80, 62, 242);
  border-radius: 30px;
}
.order_unpaid .tooltips {
  padding: 5px 40px;
  background-color: #f49e9e;
  color: rgb(231, 11, 11);
  border-radius: 30px;
}
.order_invoice .tooltips {
  padding: 5px 40px;
  background-color: #cef2bf;
  color: rgb(41, 213, 3);
  border-radius: 30px;
}
.order_sales-order .tooltips {
  padding: 5px 40px;
  background-color: #cef2bf;
  color: rgb(41, 213, 3);
  border-radius: 30px;
}
.order_deposit .tooltips {
  padding: 5px 40px;
  background-color: #cef2bf;
  color: rgb(41, 213, 3);
  border-radius: 30px;
}
.order_invoice-and-delivery-order .tooltips {
  padding: 5px 30px;
  background-color: #a9a9a9;
  color: rgb(76, 75, 78);
  border-radius: 30px;
}
/* .nav-label-logout {
  position: relative !important; 
  bottom: 0 !important; 
  height: 100%;
  width: 100%; 
  color: #ccc;
  font-size: 13px; 
  font-weight: 800; 
  transition: all 0.4s; 
} */
/* loginform css */
html,
body {
  height: 100%;
  margin: 0;
}

.vh-100 {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.row.g-0 {
  margin: 0;
}
.left-half-login {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.login-kb-logo {
  width: 300px;
  height: auto;
}
.logo-kb-container {
  background-color: #ffffff;
  width: fit-content;
  height: fit-content;
  padding: 5px;
}
.left-half-login-container {
  background-color: #292b2f;
}

.right-half-login {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96%;
  background-color: #f9f9f9;
}
/* .right-half-container{
  background-color: #fff;
} */
.login-form-content {
  justify-content: center;
  align-items: center;
}
.login-form {
  width: 350px;
  height: 350px;
}
.login-title {
  font-weight: bold;
  margin-bottom: 80px;
}
.username-field {
  display: flex;
  justify-content: center;
}
.password-field {
  display: flex;
  justify-content: center;
}
.btn-login {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 30px;
  margin-top: 20px;
  background-color: #41444a;
  border-radius: 50px;
  border: 1px solid #41444a;
  color: #fff;
  width: 230px;
  height: 40px;
}
.btn-login:hover {
  background-color: #41444a;
  border: 1px solid #41444a;
  border: #41444a;
  color: #fff;
}
.btn-login:focus {
  background-color: #41444a;
  border: 1px solid #41444a;
  border: #41444a;
  color: #fff;
}
.btn-login:active {
  background-color: #41444a;
  border: 1px solid #41444a;
  border: #41444a;
  color: #fff;
}
/* .input-group .input-group-text:last-child{
  border-top-right-radius: 0% !important;
  border-bottom-right-radius: 0% !important;

} */

.input-group .form-control:last-child {
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  width: 310px;
  padding: 14px;
  padding-right: 20px;
  margin-bottom: 30px;
}
.username,
.password {
  padding-left: 40px !important;
  padding-right: 15px !important;
  font-weight: 300;
}
.login-button-container {
  display: flex;
  justify-content: center;
}
/* login form fa icon */
.input-icon-wrapper {
  position: relative; /* Required for absolute positioning */
}

.input-icon {
  position: absolute;
  left: 13px;
  top: 25px;
  transform: translateY(-50%);
  color: #6c757d; /* Bootstrap's secondary color */
  z-index: 3; /* Ensure it's above the input */
}
/* -------------------------------------------------- */

/* dashboard page content area */
.welcome-dashboard {
  border: none;
}
.dashboard-editor1 {
  margin: auto;
  border-radius: 5px;
}
.panel-page-dashboard {
  width: auto;
  margin-left: 200px !important;
  margin-right: 200px !important;
  margin-top: 50px !important;
  padding: 20px;
  border: none;
  margin-bottom: 130px;
}
/* ----------------------------------------- */
.table .datatable thead {
  height: 40px !important;
}
#basic-datatable th {
  background-color: #f9f9f9;
  color: rgb(0, 0, 0);
}
#basic-datatable thead {
  background-color: #f9f9f9;
  color: rgb(0, 0, 0);
}

.table .datatable td {
  height: 80px !important;
}
.table.dataTable.jobsheet tbody tr {
  height: 50px; /* Minimum row height */
}
.table.dataTable td,
.table.dataTable th {
  padding: 15px 10px;
  line-height: 1.5;
}

/* Remove inner vertical borders for cleaner look */
.table.dataTable.jobsheet td:not(:last-child) {
  border-right: none;
}

/* Outer border for the table */
.table.dataTable.jobsheet {
  border: 1px solid #dddddd;
}
.upload-text {
  font-size: 1.2em;
  margin: 10px 0;
}

.file-types {
  font-size: 0.9em;
  color: #777;
}
.company-new {
  border: 1px solid;
  color: black;
  border-radius: 10px;
}
.userform-list {
  margin-bottom: 10px;
}

/* ------------------------------------- */

/* icon styling */
.cloud-icon {
  font-size: 3em;
  color: #41444a;
}
.link-icon {
  font-size: 20px;
  color: #41444a;
}
.edit-icon {
  font-size: 20px;
  color: #41444a;
}
.clone-icon {
  font-size: 20px;
  color: #41444a;
}
.fa-edit {
  font-size: 20px;
  color: #41444a;
}
.fa-print {
  font-size: 20px;
  color: #41444a;
}
.fa-upload {
  font-size: 20px;
  color: #41444a;
}
.fa-money {
  font-size: 20px;
  color: #41444a;
}
.fa-calendar-check-o {
  font-size: 20px;
  color: #41444a;
}
.fa-file-o {
  font-size: 20px;
  color: #41444a;
}
.fa-pencil-square-o {
  font-size: 20px;
  color: #41444a;
}
.fa-tasks {
  color: #41444a;
}
.fa-clock-o {
  color: #41444a;
}
.fa-spinner {
  color: #41444a;
}
.fa-list-alt {
  color: #41444a;
}
.fa-check {
  color: #41444a;
}
/* -------------------------- */
.panel-default-order_details_box_list {
  border: 1px solid;
  border-color: grey;
}

/* -------------------------------- */
/* logout button styling */

/* .navigation {
  display: flex;
  flex-direction: column;
  height: 80vh;
} */

.navigation > ul {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* .nav-label-logout {
  margin-top: auto;
  bottom: 0;
  color: white;
} */
.user {
  margin-bottom: 0 !important;
}
/* .sidebar {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.left-panel{
  overflow: hidden !important;
}

.navigation {
  flex-grow: 1;
  height: 80vh;
}
.navigation.logout{
  bottom: 0;
  height: 20vh;  
} */
.sidebar {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  position: absolute;
}

.navigation {
  flex-grow: 1;
}

.navigation-logout {
  padding: 0;
  margin: 0;
  bottom: 0;
  margin-top: 300px;
}

.is-invalid {
  border-color: #dc3545;
  background-color: #fff3f3;
}

#jobsheet-link:hover {
  color: red !important;
  text-decoration: underline !important;
}

.tooltip-inner {
  max-width: 300px; /* Adjust width as needed */
  padding: 8px 12px;
  color: white; /* Text color */
  font-size: 14px; /* Font size */
  font-family: Arial, sans-serif; /* Font family */
  text-align: left;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tooltip arrow color */
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #f8f9fa;
}

.tooltip-inner {
  z-index: 99999;
}

/* Fullscreen specific styles */
.fullscreen-table {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  background: white;
  overflow: auto;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

/* JS No. with company name in fullscreen */
.fullscreen-table .js-no {
  position: relative;
  padding-bottom: 20px;
  width: 120px !important;
}

.fullscreen-table .js-no::after {
  content: attr(data-company);
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  font-size: 0.8em;
  color: #666;
  text-align: center;
}

/* Ensure proper column distribution */
.fullscreen-table th,
.fullscreen-table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fullscreen-table.ultra-compact {
  font-size: 11.5px;
  padding: 10px !important;
}

.fullscreen-table.ultra-compact .js-no {
  width: 80px !important;
  padding-bottom: 15px !important;
}

.fullscreen-table.ultra-compact .js-no::after {
  font-size: 10px !important;
  bottom: 2px !important;
}

.fullscreen-table.ultra-compact th,
.fullscreen-table.ultra-compact td {
  padding: 2px 4px !important;
}

.fullscreen-table.ultra-compact .status-column {
  width: 50px !important;
}

/* Status indicator dots for ultra-compact */
.fullscreen-table.ultra-compact .status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 3px;
}

#basic-datatable td {
  text-align: center;
  vertical-align: middle;
}

/* Center align table headers */
#basic-datatable td {
  text-align: center;
  vertical-align: middle;
}

/* Container for the table to enable horizontal scrolling */
.table-container {
  overflow-x: auto;
  max-width: 100%;
}

/* Make the first 4 header cells sticky with proper left offsets */
#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  thead
  th:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  thead
  th:nth-child(2) {
  position: sticky;
  left: 150px; /* Width of first column */
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  thead
  th:nth-child(3) {
  position: sticky;
  left: 300px; /* Sum of first two columns */
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  thead
  th:nth-child(4) {
  position: sticky;
  left: 450px; /* Sum of first three columns */
  z-index: 5;
  background-color: white;
}

/* Make the first 4 cells in each row sticky with proper left offsets */
#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  tbody
  td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  tbody
  td:nth-child(2) {
  position: sticky;
  left: 150px;
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  tbody
  td:nth-child(3) {
  position: sticky;
  left: 300px;
  z-index: 5;
  background-color: white;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  tbody
  td:nth-child(4) {
  position: sticky;
  left: 450px;
  z-index: 5;
  background-color: white;
}

/* Maintain column widths */
#jobsheet-datatable .table.dataTable:not(.fullscreen-table) th.js-no,
#jobsheet-datatable .table.dataTable:not(.fullscreen-table) td.js-no {
  width: 150px !important;
  min-width: 150px !important;
}

#jobsheet-datatable .table.dataTable:not(.fullscreen-table) th.company-name,
#jobsheet-datatable .table.dataTable:not(.fullscreen-table) td.company-name {
  width: 150px !important;
  min-width: 150px !important;
}

#jobsheet-datatable .table.dataTable:not(.fullscreen-table) th.date,
#jobsheet-datatable .table.dataTable:not(.fullscreen-table) td.date {
  width: 150px !important;
  min-width: 150px !important;
}

#jobsheet-datatable .table.dataTable:not(.fullscreen-table) th.tracking-col,
#jobsheet-datatable .table.dataTable:not(.fullscreen-table) td.tracking-col {
  width: 50px !important; /* Changed from 50px to match your HTML */
  min-width: 50px !important;
}

/* Borders and special cases */
#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  th:nth-child(-n + 4),
#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  td:nth-child(-n + 4) {
  border-right: 1px solid #ddd;
}

#jobsheet-datatable
  .table.dataTable:not(.fullscreen-table)
  tr[style*="background-color: #fff3cd"]
  td:nth-child(-n + 4) {
  background-color: #fff3cd !important;
}
