@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html {
  font-size: 14px;
  font-family: lato;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.operation-page {
  width: 100%;
}

.operation-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.operation-card .operation-card-body {
  padding: 24px;
}

.operation-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  background: #fffbeb;
}

.operation-notice-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fef3c7;
  color: #b45309;
}

.operation-notice-title {
  margin: 0 0 4px;
  color: #92400e;
  font-size: 0.9rem;
  font-weight: 700;
}

.operation-notice-message {
  margin: 0;
  color: #78350f;
  font-size: 0.9rem;
  line-height: 1.55;
}

.operation-date-chip {
  display: inline-block;
  margin: 0 3px;
  padding: 2px 8px;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  background: #ffffff;
  color: #92400e;
  font-weight: 700;
  white-space: nowrap;
}

.operation-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.operation-actions .btn {
  min-width: 116px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.operation-primary-button {
  box-shadow: 0 3px 8px rgba(28, 117, 188, 0.18);
}

@media (max-width: 575.98px) {
  .operation-card .operation-card-body {
    padding: 16px;
  }

  .operation-notice {
    padding: 14px;
  }

  .operation-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .operation-actions .btn {
    width: 100%;
  }
}

.navbar-user-area {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.navbar-account-menu {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 18px 0 14px;
  border-left: 1px solid #e2e8f0;
}

.navbar-account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #64748b;
  text-align: left;
}

.navbar-account-toggle:hover,
.navbar-account-toggle:focus {
  color: var(--theme-color);
  outline: 0;
}

.navbar-account-branch-context {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 180px;
  overflow: hidden;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-account-branch-context span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-account-branch-context i {
  flex: 0 0 auto;
  color: var(--theme-color);
}

.navbar-account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--theme-color);
  font-size: 1rem;
}

.navbar-account-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1;
}

.navbar-account-summary-name,
.navbar-account-summary-role {
  display: block;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-account-summary-name {
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 700;
}

.navbar-account-summary-role {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 500;
}

.navbar-account-menu .dropdown-menu {
  right: 4px !important;
  left: auto !important;
  min-width: 230px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.navbar-account-heading {
  display: flex;
  flex-direction: column;
  padding: 7px 11px;
  line-height: 1.15;
}

.navbar-account-name {
  overflow: hidden;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-account-branch,
.navbar-account-role {
  margin-top: 1px;
  color: #64748b;
  font-size: 0.75rem;
}

.navbar-signout-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  color: #b91c1c;
  font-size: 0.88rem;
  font-weight: 600;
}

.navbar-signout-link:hover,
.navbar-signout-link:focus {
  background: #fef2f2;
  color: #991b1b;
}

@media (max-width: 767.98px) {
  .navbar-account-menu {
    padding: 0 10px 0 7px;
  }

  .navbar-account-avatar {
    width: 34px;
    height: 34px;
  }

  .navbar-account-toggle {
    gap: 6px;
  }

  .navbar-account-branch-context {
    max-width: 100px;
    font-size: 0.72rem;
  }

  .navbar-account-menu .dropdown-menu {
    right: 2px !important;
    min-width: 220px;
  }

  .navbar-account-summary-name,
  .navbar-account-summary-role {
    max-width: 115px;
  }
}

.formRightButton {
  margin-top: 30px;
}

.select2-selection__rendered {
  line-height: 31px !important;
}

.select2-container .select2-selection--single {
  height: calc(2.25rem + 2px) !important;
}

.select2-selection__arrow {
  height: calc(2.25rem + 2px) !important;
}

.form-group.required .control-label:after {
  content: "*";
  color: red;
}

.p-15 {
  padding: 15px;
}

.btnBack {
  color: #6c757d;
  border-color: #6c757d;
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.btnPageLink {
  float: right
}

.card-title-p {
  padding: 6px;
}

.divControlRightAlign {
  display: flex;
  justify-content: flex-end;
}

.btn-info,
.btn-primary {
  background: var(--theme-color) !important;
  border: 1px var(--theme-color) !important;
}

.dataTables_wrapper,
.top,
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.dataTables_wrapper,
.top,
.bottom,
.dataTables_length,
.dataTables_wrapper,
.top,
.dataTables_filter,
.dataTables_wrapper,
.top,
.dt-buttons {
  margin-bottom: 0;
}

.top {
  margin-bottom: 6px !important;
}

.dataTables_wrapper,
.dt-buttons {
  margin-left: auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  background-color: #f1f8ff;
  color: #1C75BC;
  padding: 6px 14px;
  border: 1px solid rgba(28, 117, 188, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(28, 117, 188, 0.05);
  transition: all 0.2s ease;
}

/* Card */
.details-view {
  background: #ffffff;
}

.details-view .card-header {
  background: transparent;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
}

.details-view .card-body {
  padding: 1.25rem 1.5rem;
}

/* Header */
.details-header {
  color: #1e293b;
}

.details-title {
  color: #1e293b;
}

/* Summary Grid */
.details-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin: 0;
  padding: 1.5rem;
}

.details-summary-item {
  margin-bottom: 1rem;
}

/* Detail Labels & Values */
.details-label {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.details-label--spaced {
  margin-bottom: 5px;
}

.details-value {
  color: #334155;
  font-size: 1rem;
  font-weight: 500;
}

.details-value--strong {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
}

.details-value--emphasis {
  color: #0f172a;
  font-weight: 600;
}

/* Status Chips */
.status-chip {
  padding: 4px 12px;
}

.status-active {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.status-void {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.sales-order-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.sales-order-status-badge.Pending {
  background: #fff7ed;
  color: #cb8d0e;
  border: 1px solid #fed7aa;
}

.sales-order-status-badge.OutForDelivery {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.sales-order-status-badge.Delivered {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.sales-order-status-badge.Cancel {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Table */
.details-table thead {
  background-color: #f8fafc;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

.details-table th {
  border-bottom: 2px solid #e2e8f0;
  padding: 12px 16px;
}

.details-table tbody {
  color: #334155;
  font-size: 0.95rem;
}

.details-table td {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 16px;
}

.details-table td.details-table-strong {
  color: #0f172a;
  font-weight: 500;
}

.details-table td.details-table-total {
  font-weight: 600;
}

/* Remarks Section */
.details-remarks {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.details-remarks-title {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.details-remarks-text {
  color: #334155;
  font-size: 0.95rem;
  margin: 0;
}

/* Totals Summary */
.details-summary-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.25rem 1.5rem;
}

.details-summary-row {
  border-bottom: 1px dashed #cbd5e1;
}

.details-summary-label {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

.details-summary-vat-label {
  margin: 0;
}

.details-summary-value {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Grand Total Highlight */
.details-grand-total {
  background-color: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 0.25rem;
}

.details-grand-total-label {
  color: #0284c7;
  font-size: 1.05rem;
  font-weight: 700;
}

.details-grand-total-value {
  color: #0284c7;
  font-size: 1.15rem;
  font-weight: 700;
}

.select2-container {
  width: 100% !important;
}

.clsInputGroupItem {
  border: 1px solid rgba(108, 117, 125, 0.4);
  border-radius: 0% 10% 10% 0%;
}

.formGroupHead {
  position: absolute;
  top: -12px;
  left: 15px;
  font-weight: bold;
}

.formGroupContainer {
  border: 2px solid #ced4da;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.white-dot {
  width: 8px;
  /* Adjust size as needed */
  height: 8px;
  /* Adjust size as needed */
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.nav-l2 {
  margin-left: 10px !important;
  margin-right: -10px !important;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  background-color: #1C75BC;
  color: #ffffff;
  padding: 6px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(28, 117, 188, 0.2);
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: #155a92;
  box-shadow: 0 4px 12px rgba(28, 117, 188, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Datatable add buttom */
.dataTableAddButton {
  border: none !important;


}

.custom-button:hover {
  background-color: #f1f8ff !important;
}

.custom-button{
  display: none !important;
}
.dt-button-split-drop,.cls-datatable-collection, .custom-button{
  outline: none !important;
  margin: 0px !important;
  padding: 6px 16px !important;
  border: 1px solid #1C75BC !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background-color: #ffffff !important;
  color: #1C75BC !important;
  box-shadow: 0 2px 5px rgba(28, 117, 188, 0.1) !important;
}
.dt-button-split-drop:hover, .cls-datatable-collection:hover {
  background-color: #f1f8ff !important;
}
.dt-button-split-drop, .cls-datatable-collection{
  border-radius: 6px !important;
}

div.dt-buttons span.dt-button-down-arrow {
  top: 2px !important;
  left: 4px !important;
}
.cls-datatable-collection span {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #1C75BC !important;
  margin: 0px !important;
  padding: 0px !important;
}

.dt-button-print::before {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1C75BC;
  margin: 0px;
  padding: 0px;
  content: "Print  ";
}

.dt-button-split-drop,.cls-datatable-collection{
  padding-bottom: 6px !important;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.dt-button-collection-table-control div{
  max-height: 400px !important;
  overflow-y: scroll !important;
}
.custom-button{
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.dt-button-background{
  display: none !important;
}

a.nav-item-custom-margin {
  margin: 0px !important;
  padding: 0px !important;
}

.cursor-pointer {
  cursor: pointer;
}

.nav-item-custom-margin 
{
  margin: 0px !important;
  padding: 0px !important;
}
a.nav-item-custom-margin{
  margin: 0px !important;
  padding: 0px !important;
}

.dt-button-collection{
  margin-left: -40px !important;
  border: none !important;
}

body {
  overflow-x: hidden;
}

/* ==================================================== */
/* MODERN UI REDESIGN - APPLIED GLOBALLY                */
/* ==================================================== */

/* Premium Data Table Card styling */
.table-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 24px;
}

.table-card .card-body {
    padding: 20px;
}

/* Filter Action Bar */
.filter-action-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
}

/* Chips */
.filter-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    background: #f1f8ff;
    color: #1C75BC;
    border: 1px solid rgba(28, 117, 188, 0.2);
    border-radius: 50px;
    padding: 6px 32px 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(28, 117, 188, 0.05);
}

.chip:hover {
    background: #e6f3ff;
    border: 1px solid rgba(28, 117, 188, 0.4);
}

/* Modern Filter Button */
.btn-filter-modern {
    display: inline-flex;
    align-items: center;
    background: #0263a0;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-filter-modern img {
    filter: brightness(0) invert(1);
    width: 14px;
    margin-right: 6px;
}

.btn-filter-modern:hover {
    background: #025286;
    color: white;
}

/* Table Actions */
.table-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-action-primary {
    background: #0263a0;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-action-primary:hover {
    background: #025286;
    color: white;
}

.btn-action-outline {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-action-outline:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Table Enhancements */
.table-card .table, .dataTable {
    margin-top: 0;
    border-collapse: separate;
    border-spacing: 0;
}
.table-card .table thead th, .dataTable thead th {
    font-weight: 600 !important;
    color: #475569;
    font-size: 0.85rem;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    white-space: nowrap;
}

/* Sorted column header styling */
table.dataTable thead th.sorting_asc, 
table.dataTable thead th.sorting_desc {
    background-color: #f0f8ff !important;
    border-bottom: 2px solid #0263a0 !important;
    color: #0263a0;
}

.table-card .table tbody td, .dataTable tbody td {
    padding: 12px 16px;
    color: #475569;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
}

.table-card .table tfoot th, .dataTable tfoot th {
    padding: 12px 16px;
    background: #ffffff;
    font-weight: 600;
    color: #1e293b;
    border-top: 2px solid #e2e8f0;
}

/* Hide default datatable buttons if any are rendered */
.table-card .dt-buttons {
    display: none !important;
}

/* Custom DataTables Top Wrapper Styling */
.table-card .dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}
.table-card .dataTables_filter, .table-card .dataTables_length {
    margin-bottom: 0 !important;
    float: none !important;
    text-align: left !important;
}
.table-card .dataTables_filter label, .table-card .dataTables_length label {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.table-card .dataTables_filter input, .table-card .dataTables_length select {
    margin-left: 0 !important;
}

/* Modern Typography Adjustments */
.card-body label,
.card-body .control-label,
.card-body .font-weight-bold,
.summary-block span.font-weight-bold,
.summary-block label {
    font-weight: 500 !important;
}

.summary-block input.form-control,
.grand-total-input {
    font-weight: 600 !important;
}

/* Modern Summary Footer */
.summary-footer {
    background-color: #f8fafc;
    border-top: 2px solid #e2e8f0;
}
.summary-footer tr td {
    padding: 8px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}
.summary-label {
    font-weight: 600;
    text-align: right;
    color: #475569;
    font-size: 0.95rem;
}
.summary-input {
    background: transparent !important;
    border: none !important;
    text-align: right;
    font-weight: 700;
    color: #1e293b;
    padding: 0;
    box-shadow: none !important;
    font-size: 1rem;
}
.summary-input:focus {
    outline: none;
}
.grand-total-row {
    background-color: #e0f2fe;
    border-top: 1px solid #bae6fd;
}
.text-theme-blue {
    color: #1C75BC !important;
    font-size: 1.05rem;
}
.grand-total-input {
    color: #1C75BC !important;
    font-size: 1.15rem;
}

/* Modern Action Buttons */
.btn-modern-save {
    background: #1C75BC;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(28, 117, 188, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.btn-modern-save:hover {
    background: #155a92;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 117, 188, 0.35);
}
.btn-modern-save:active {
    transform: translateY(0);
}

.btn-modern-cancel {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.btn-modern-cancel:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.35);
    color: white;
}
.btn-modern-cancel:active {
    transform: translateY(0);
}

/* Dashed Add Item Button for Table Forms */
.btn-dashed-add {
    width: 100%;
    background: #f8fafc;
    color: #475569;
    border: 2px dashed #cbd5e1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn-dashed-add:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 12px 20px;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}
.breadcrumb-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}
.breadcrumb-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    gap: 16px;
    letter-spacing: -0.2px;
}
.btnBack {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e2e8f0;
}
.btnBack:hover {
    transform: translateX(-3px);
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.btnBack:active {
    transform: translateX(-1px);
}
.btnBack img {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.btnBack:hover img {
    opacity: 1;
}
.breadcrumb-text {
    color: #0f172a;
    background: linear-gradient(90deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.breadcrumb-list {
    background: transparent;
    padding: 0;
    margin: 0;
}
#divBreadCrumbSection {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}
.btn-index-modern {
    background: #1C75BC;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(28, 117, 188, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
}
.btn-index-modern i {
    font-size: 1rem;
}
.btn-index-modern:hover {
    background: #155a92;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 117, 188, 0.35);
    color: white;
}
.btn-index-modern:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(28, 117, 188, 0.25);
}

.item-opening-stocks-table-responsive {
    overflow: visible !important;
}

.item-opening-stocks-table-responsive .nepCalendarIcon {
    position: relative;
}
