.top-header {
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 24px;
   border-bottom: 1px solid #E2E8F0;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 6px;
   font-weight: 900;
   font-size: 16px;
   color: #182A52;
   text-decoration: none;
 }

 .logo-icon {
   width: 32px;
   height: 32px;
   background: #182A52;
   border-radius: 6px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 12px;
   font-weight: 900;
 }

 .logo-text {
   display: flex;
   flex-direction: column;
   line-height: 1;
 }

 .logo-text span:first-child {
   font-size: 12px;
   font-weight: 900;
   color: var(--red);
   letter-spacing: 1.5px;
 }

 .logo-text span:last-child {
   font-size: 12px;
   font-weight: 900;
   color: #182A52;
 }

 .header-right {
   display: flex;
   align-items: center;
   gap: 0;
 }

 .header-links {
   display: flex;
   align-items: center;
   gap: 0;
   font-size: 13px;
   color: #64748B;
 }

 .header-links a {
   text-decoration: none;
   padding: 0 10px;
   font-weight: 400;
   font-size: 16px;
   line-height: 25px;
   /* identical to box height, or 156% */
   text-align: right;

   color: #182A52;


 }

 .header-links a:hover {
   color: var(--red);
 }

 .header-links span {
   color: #CBD5E1;
 }

 .my-account {
   display: flex;
   align-items: center;
   gap: 4px;
   cursor: pointer;
   position: relative;
   padding: 0 10px;
   user-select: none;
 }

 .my-account-text {
   font-weight: 400;
   font-size: 16px;
   line-height: 25px;
   text-align: right;
   color: #182A52;


 }

 .my-account i {
   font-size: 10px;
   color: #64748B;
 }

 .dropdown-menu {
   position: absolute;
   top: 100%;
   right: 0;
   left: auto;
   margin-top: 6px;
   background: #fff;
   border: 1px solid #E2E8F0;
   border-radius: 8px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   min-width: 170px;
   display: none;
   padding: 8px 0;
   z-index: 200;
 }

 .dropdown-menu.show {
   display: block;
 }

 .dropdown-menu a {
   display: block;
   transition: background 0.2s;
   text-decoration: none;
   padding: 5px 10px;
   font-size: 15px;
   font-weight: 400;
   line-height: normal;
   color: #182A52;
 }

 .dropdown-menu a:hover {
   background: #F1F5F9;
 }

 .dropdown-menu a.logout {
   color: var(--red);
 }

 /* ========== SERVICE BAR ========== */
 .service-bar {
   background: #fff;
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0;
   border-bottom: 1px solid #E2E8F0;
   position: fixed;
   top: 71px;
   left: 0;
   right: 0;
   z-index: 999;
   padding: 8px 0 0;
   overflow-x: auto;
   scrollbar-width: none;
 }

 .service-bar::-webkit-scrollbar {
   display: none;
 }

 .service-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   padding: 6px 20px 10px;
   cursor: pointer;
   font-size: 12.5px;
   font-weight: 700;
   color: #182A52;
   border-bottom: 3px solid transparent;
   text-align: center;
   white-space: nowrap;
   transition: color 0.15s, border-color 0.15s;
   min-width: 90px;
   user-select: none;
   text-decoration: none;
 }

 .service-item span {
   font-weight: 700;
   font-size: 15px;
   line-height: 22px;
   margin-bottom: 0;
   color: #465575;
 }

 .service-item:hover {
   color: var(--red);
 }

 .service-item.active {
   color: var(--red);
   border-bottom-color: var(--red);
 }

 .service-icon {
   width: 28px;
   height: 28px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
 }

 /* ========== SIDEBAR ========== */
 .sidebar {
   position: fixed;
   left: 0;
   top: 150px;
   bottom: 0;
   width: 260px;
   background: #F5F8FF;
   border-right: 1px solid #E2E8F0;
   padding: 10px 0 18px;
   overflow-y: auto;
   z-index: 998;
 }

 .sidebar::-webkit-scrollbar {
   width: 5px;
 }

 .sidebar::-webkit-scrollbar-thumb {
   background: #ddd;
   border-radius: 5px;
 }

 .sidebar-group {
   margin-bottom: 2px;
   position: relative;
 }

 .nav-item,
 .nav-parent {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 18px;

   padding-left: 30px;
   cursor: pointer;
   font-size: 16px;
   font-weight: 700;
   color: #182A52;
   transition: background 0.12s, color 0.12s;
   user-select: none;
   text-decoration: none;
 }

 .nav-item:hover,
 .nav-parent:hover {
   background: #f5f5f5;
 }

 .nav-item.active,
 .nav-parent.active {
   color: var(--red);
   /* background: #fff8f8; */
 }

 .nav-parent.active:after {
   content: "";
   position: absolute;
   width: 4px;
   height: 35px;
   left: auto;
   right: 0px;
   top: 8px;
   border-radius: 60px 0 0px 60px;
   background: #9E1D20;
   overflow: hidden;
 }

 .nav-parent.active .chev,
 .nav-item.active .chev {
   color: var(--red);
 }

 .nav-item img:first-child,
 .nav-parent img:first-child {
   width: 25px;
   text-align: center;
   font-size: 15px;
   flex-shrink: 0;
 }

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

 .nav-parent .left {
   display: flex;
   align-items: center;
   gap: 10px;
   min-width: 0;
 }

 .chev {
   font-size: 11px;
   transition: transform 0.18s ease;
   opacity: 0.8;
   color: #94A3B8;
 }

 .sidebar-group.open .chev {
   transform: rotate(180deg);
 }

 .nav-submenu {
   display: none;
   margin-left: 12px;
   padding-left: 24px;
 }

 .sidebar-group.open .nav-submenu {
   display: block;
 }

 .nav-submenu .nav-item {
   padding: 5px 14px;
   font-size: 13.5px;
   font-weight: 600;
   border-radius: 8px;
   padding-left: 30px;
   margin: 2px 8px 2px 0;
 }

 /* hide chevron for direct links / no submenu */
 .no-submenu .chev {
   display: none;
 }

 /* ========== MAIN CONTENT ========== */
 .main-content {
   margin-left: 260px;
   margin-top: 150px;
   padding: 28px 36px 40px;
   min-height: calc(100vh - 130px);
   background: #FFFFFF;
 }

 .page,
 .empty-page,
 .inbox-page {
   display: none;
   animation: fadeIn 0.18s ease;
 }

 .page.active,
 .empty-page.active,
 .inbox-page.active {
   display: block;
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(4px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .page-title {
   font-size: 32px;
   line-height: 1.1;
   color: #182A52;
   font-weight: 800;
   margin-bottom: 8px;
 }

 .page-subtitle {
   font-size: 15px;
   color: #666;
   margin-bottom: 28px;
 }

 .welcome-section {
   margin-bottom: 32px;
 }

 .welcome-section h1 {
   font-family: 'Nunito';
   font-style: normal;
   font-weight: 400;
   font-size: 20px;
   line-height: 27px;
   text-align: center;
   color: #182A52;
 }

 .welcome-section h1 span {
   font-weight: 800;
 }

 /* ========== NEW ORDER BAR ========== */
 .new-order-bar {
   display: flex;
   align-items: center;
   gap: 22px;
   margin-bottom: 22px;
   overflow: hidden;
   padding: 25px 20px;
   box-sizing: border-box;
   background: #FFFFFF;
   border: 1px solid rgba(3, 3, 3, 0.1);
   box-shadow: 0px 5px 20px -2px rgba(195, 197, 212, 0.568133);
   border-radius: 10px;
 }

 .order-label {

   font-size: 17px;
   font-weight: 800;
   color: #182A52;
   white-space: nowrap;
 }

 .order-select {
   flex: 1;
   padding: 4px 16px;
   border: none;
   cursor: pointer;
   background: #fff;
   border-bottom: 1px solid #DBDBDB;
   font-weight: 400;
   font-size: 16px;
   line-height: 27px;
   color: #ADB5BD;
 }

 .btn-get-started {
   background: var(--red);
   color: #fff;
   border: none;
   padding: 0 24px;
   height: 52px;
   font-size: 15px;
   font-weight: 800;
   cursor: pointer;
   white-space: nowrap;
   transition: background 0.15s;
   border-radius: 4px;
 }

 .btn-get-started:hover {
   background: var(--blue);
 }

 /* ========== DASHBOARD GRID ========== */
 .dashboard-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 16px;
 }

 .main-content .card {
   padding: 24px;
   cursor: pointer;
   transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
   min-height: 118px;

   background: #FCFDFF;
   border: 1px solid #DDDDDD;
   border-radius: 10px;

 }

 .main-content .card:hover {
   transform: translateY(-1px);
   box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
   background: #fcfcfc;
 }

 .card-headers h3 {
   font-style: normal;
   font-weight: 700;
   font-size: 22px;
   line-height: 25px;

   color: #182A52;


 }

 .badge {
   font-weight: 400;
   font-size: 20px;
   line-height: 24px;
   text-align: right;
   color: #465575;
 }

 .card p {
   font-size: 13.8px;
   color: #666;
   line-height: 1.55;
 }

 .card-meta {
   margin-top: 10px;
   font-size: 13px;
   color: #AAAAAA;
 }

 .card-meta strong {
   display: block;
   color: #182A52;
   margin-top: 4px;
   font-weight: 700;
 }

 /* ========== INBOX STATS PAGE ========== */
 .inbox-page {
   margin-left: 260px;
   margin-top: 150px;
   padding: 28px 36px 40px;
   min-height: calc(100vh - 130px);
   background: #f5f8ff;
 }

 .stats-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 36px;
   max-width: 800px;
   margin: auto;
 }

 .stat-card {
   padding: 35px;
   cursor: pointer;
   transition: transform 0.14s ease, box-shadow 0.14s ease;
   position: relative;
   min-height: 118px;
   box-sizing: border-box;
   background: #FFFFFF;
   border: 1px solid rgba(3, 3, 3, 0.1);
   box-shadow: 0px 5px 20px rgba(195, 197, 212, 0.568133);
   border-radius: 8px;
 }

 .stat-card span {
   display: flex;
   align-items: baseline;
   gap: 12px;
 }

 .stat-card:hover {
   transform: translateY(-1px);
   box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
 }

 .stat-card h3 {
   margin-bottom: 16px;
   font-weight: 700;
   font-size: 22px;
   line-height: 32px;
   color: #182A52;
 }

 .stat-number {
   color: var(--red);
   font-weight: 700;
   font-size: 40px;
 }

 .stat-label {
   font-weight: 400;
   font-size: 19px;
   line-height: 16px;
   color: #182A52;
   top: -2px;
   position: relative;
 }

 .stat-arrow {
   position: absolute;
   bottom: 20px;
   right: 24px;
   color: var(--red);
   font-size: 18px;
 }

 /* ========== EMPTY PAGE ========== */
 .empty-page {
   margin-left: 240px;
   margin-top: 150px;
   padding: 28px 36px 40px;
   min-height: calc(100vh - 130px);
      background: #f5f8ff;
 }

 .empty-content {
   background: #fff;
   border-radius: 12px;
   padding: 60px 40px;
   text-align: center;
   border: 1.5px dashed #ddd;
 }

 .empty-content i {
   font-size: 48px;
   color: #CBD5E1;
   margin-bottom: 16px;
 }

 .empty-content h2 {
   font-size: 32px;
   font-weight: 800;
   color: #182A52;
   margin-bottom: 8px;
 }

 .empty-content p {
   font-size: 15px;
   color: #666;
   font-weight: 600;
 }

 .placeholder {
   border: 1.5px dashed #ddd;
   border-radius: 12px;
   padding: 24px;
   color: #666;
   background: #fafafa;
   font-size: 14px;
   font-weight: 600;
 }

 /* ========== RESPONSIVE ========== */
 @media (max-width: 1100px) {
   .sidebar {
     width: 220px;
   }

   .main-content,
   .empty-page,
   .inbox-page {
     margin-left: 220px;
   }

   .dashboard-grid,
   .stats-grid {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 820px) {
   .service-bar {
     justify-content: flex-start;
     padding-inline: 12px;
   }

   .sidebar {
     position: relative;
     top: 0;
     width: 100%;
     height: auto;
     border-right: 0;
     border-bottom: 1px solid #E2E8F0;
   }

   .main-content,
   .empty-page,
   .inbox-page {
     margin-left: 0;
     padding: 22px 16px 34px;
   }

   .top-header {
     padding: 0 14px;
   }

   .page-title {
     font-size: 26px;
   }
 }

 /*=====================my profile css start from here====================*/
 /* ── Profile completion banner ── */
 .completion-banner {
   padding: 30px;
   margin-bottom: 16px;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
   background: #FFFFFF;
   border: 1px solid rgba(3, 3, 3, 0.1);
   border-radius: 10px;

 }

 .completion-banner h5 {
   font-weight: 700;
   font-size: 22px;
   line-height: 24px;
   color: #182A52;
 }

 .completion-banner p {
   font-weight: 400;
   font-size: 16px;
   line-height: 16px;
   color: #465575;

 }

 .progress-bar-track {

   background: #DBDBDB;
   border-radius: 999px;
   height: 6px;
   overflow: hidden;
   margin: 15px 0;
   max-width: 500px;

 }

 .progress-bar-fill {
   background: #9E1D20;
   height: 100%;
   border-radius: 999px;
   width: 31%;
   transition: width 0.6s ease;

 }

 .completion-steps {
   display: flex;
   gap: 50px;
   flex-wrap: wrap;
   padding: 12px 30px;
   width: 100%;

   background: #FFFFFF;
   border: 1px solid rgba(3, 3, 3, 0.1);
   box-shadow: 0px 5px 20px -2px rgba(195, 197, 212, 0.568133);
   border-radius: 28px;

 }

 .step-chip {
   display: flex;
   align-items: center;
   gap: 5px;
   cursor: pointer;
   transition: all 0.18s;
   text-decoration: none;

   font-weight: 400;
   font-size: 16px;
   line-height: 22px;
   color: #465575;


 }

 a.iconlink {
   position: absolute;
   bottom: -6px;
   z-index: 99;
   left: 60px;
   background: #fff;
   width: 30px;
   height: 30px;
   border: 1px solid #ddd;
   border-radius: 50%;
   text-align: center;
 }

 .profile-row {
   display: flex;
   justify-content: space-between;
   gap: 60px;
 }

 .profile-row-col-md-8 {
   width: 100%;
 }

 .profile-image {
   width: 135px;
   height: 135px;
   border-radius: 50%;
   margin-left: auto;
   position: relative;

   border: 1.68168px solid #D5DAE3;

 }

 .profile-content .align-items-center.d-flex {
   gap: 50px;
 }

 .step-chip:hover:not(.done) {
   border-color: #4A90E2;
   color: #4A90E2;
   background: var(--primary-light);
 }

 /* ── Card ── */
 .card-section {
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
   background: #FFFFFF;
   border: 1px solid rgba(3, 3, 3, 0.1);
   border-radius: 10px;
   padding: 30px;
   margin: 20px 0;
 }

 .step-chip img {
   height: 15px;
 }

 span.step-chip.crcl img {
   border: 1px solid #4A90E2;
   padding: 3px;
   height: 18px;
   border-radius: 50%;
 }

 span.step-chip.crcl {
   color: #4A90E2;
 }

 .card-section .section-title {

    font-weight: bold;
    font-size: 28px;
    line-height: 25px;
    color: #030303;
    text-align: left;
    margin-bottom: 7px;


 }

 .section-subtitle {
   font-weight: 400;
   font-size: 16px;
   line-height: 22px;
   margin-bottom: 0;
   color: #465575;


 }

 .space-divider {
   display: block;
   border-top: 0;
   margin: 0;
   height: 25px;
 }

 /* ── Field rows ── */
 .field-row {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 10px;
 }

 .field-row:last-child {
   margin-bottom: 0;
 }

 .field-label {
   font-weight: 400;
   font-size: 16px;
   line-height: 20px;
   color: #465575;
   width: 120px;
   overflow-wrap: break-word;
 }

 .field-value {
   font-weight: 700;
   font-size: 16px;
   line-height: 20px;
   /* identical to box height, or 125% */
   letter-spacing: -0.0066664px;

   color: rgba(24, 42, 82, 0.8);


 }

 .field-value.muted {
   color: var(--text-muted);
 }

 .field-action,
 .view-link {
   font-weight: 700;
   font-size: 16px;
   line-height: 20px;
   /* identical to box height, or 125% */
   letter-spacing: -0.0066664px;

   color: #4A90E2;


 }

 .field-action:hover {
   text-decoration: underline;
   color: #9E1D20;
 }

 .profile-social-media {
   display: flex;
   gap: 10px;
 }

 .linkedin-in {
   background-color: #1877F2;
 }

 .instagram-in {
   background-color: #0A66C2;
 }

 .facebook-in {
   background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1AAAAAA 100%);
 }

 .profile-social-media a {
   padding: 4px;
   color: white;
   border-radius: 100%;
   font-size: 15px;
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 /* Password dots */
 .pwd-dots {
   letter-spacing: 3px;
   font-size: 1rem;
   color: var(--text-muted);
 }

 /* ── Profile avatar row ── */
 .avatar-wrap {
   position: relative;
   width: 72px;
   height: 72px;
 }

 .avatar-circle {
   width: 72px;
   height: 72px;
   border-radius: 50%;
   background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   color: #fff;
   font-family: 'DM Serif Display', serif;
   border: 2px solid var(--border);
 }

 .avatar-edit-btn {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: #4A90E2;
   color: #fff;
   border: none;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.65rem;
   cursor: pointer;
 }

 /* ── Section header with edit ── */
 .section-head {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
 }

 .edit-btn,
 .add-company-btn {
   cursor: pointer;
   display: flex;
   align-items: center;
   transition: all 0.15s;
   font-weight: 700;
   font-size: 16px;
   line-height: 20px;
   text-align: right;
   letter-spacing: -0.0066664px;
   color: #4A90E2;
   border: 0;
   background: white;
   gap: 5px;
    position: absolute;
    right: 5px;
    top: 10px;
 }

 .add-company-btn img {
   border: 1px solid #4A90E2;
   padding: 3px;
   height: 18px;
   border-radius: 50%;
 }

 .edit-btn:hover {
   background: var(--primary-light);
 }

 /* ── Company list ── */
 .company-list {
   margin-top: 12px;
 }

 .company-item {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 16px;
   line-height: 20px;
   letter-spacing: -0.0066664px;
   color: rgba(24, 42, 82, 0.8);


 }

 .company-item:hover {
   border-color: #4A90E2;
 }

 .company-num {
   flex-shrink: 0;
   font-weight: 400;
 }
 
 .add-company-btn:hover {
   opacity: 0.75;
 }

 /* ── Notifications ── */
 .notif-row {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 10px 0;

   font-weight: 700;
   font-size: 16px;
   line-height: 20px;
   color: #465575;
 }

 .notif-label {
   width: 150px;
   overflow-wrap: break-word;
 }

 .notif-desc {
   font-weight: 400;
 }

 /* Checkbox style matching screenshot */
 .notif-checkbox {
   width: 19px;
   height: 19px;
   cursor: pointer;
   flex-shrink: 0;
   appearance: none;
   -webkit-appearance: none;
   border: 1.5px solid rgba(158, 28, 31, 0.5);
   border-radius: 2.4px;
   background: transparent;
   position: relative;
 }

 /* Checkmark only — no background */
 .notif-checkbox:checked {
   background: transparent;
 }

 .notif-checkbox:checked::after {
   content: "\f00c";
   position: absolute;
   left: 50%;
   top: 50%;
   border-top: none;
   border-left: none;
   color: #9E1C1F;
   transform: translate(-50%, -50%);
   font-weight: 900;
   font-family: 'Font Awesome 7 Free';
   font-size: 12px;

 }

 .login-pass-gen .fields {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 16px 20px;
   margin-bottom: 0;
 }

 .login-pass-gen .field {
   position: relative;
   padding-top: 18px;
 }

 .login-pass-gen .field input {
   width: 100%;
   box-sizing: border-box;
   padding: 0 36px 0 0;
   border-radius: 0;
   background: transparent;
   outline: none;
   transition: border-color 0.2s;
   font-weight: 400;
   font-size: 16px;
   line-height: 33px;
   color: #030303;
   border: 0;
   border-bottom: 2px solid #DBDBDB;

 } 
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover, 
.field input:-webkit-autofill:focus, 
.field input:-webkit-autofill:active { 
    transition: background-color 600000s ease-in-out 0s;
    -webkit-text-fill-color: #000000 !important;  
     
    border: none !important;
    border-bottom: 2px solid #65bcef !important;
    background-color: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

/* Your standard focus state */
.field input:focus {
    border: none;
    border-bottom: 2px solid #65bcef;
    outline: none;
} 
 .login-pass-gen .field label {
   position: absolute;
   left: 0;
   top: 18px;
   pointer-events: none;
   transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
   font-weight: 400;
   font-size: 16px;
   line-height: 19px;
   color: #AAAAAA;


 }

 .login-pass-gen .field .show-btn {
   position: absolute;
   right: 0;
   bottom: 8px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0;
   font-weight: 400;
   font-size: 14px;
   line-height: 16px;
   color: #AAAAAA;
 }

 .login-pass-gen .field input:focus~label,
 .login-pass-gen .field input:not(:placeholder-shown)~label {
   top: 0;

   font-weight: 400;
   font-size: 14px;
   line-height: 19px;
   color: #AAAAAA;
 }

 .login-pass-gen a.default-btn {
   min-width: 200px;
   margin: auto;
   font-size: 19px;
 }

 .login-pass-gen {
   text-align: center;
 }

 .add-company-btn .close-icon {
   border: 0;
   width: 24px;
   height: auto;
   padding: 0;
 }

 .default-btn.close-btn {
   background: white;
   border: 1px solid #182A52;
   color: #182A52;
   min-width: 120px;
 }

 .default-btn.close-btn:hover {
  background-color: var(--red);
  color: white;
 }



 .country-main-class {
   display: flex;
   gap: 10px;
 }


 .country-class {
   display: flex;
   align-items: center;
   gap: 6px;
   cursor: pointer;
   border: none;
   background: none;
   position: relative;
   font-weight: 400;
   font-size: 15px;
   color: #030303;
   border-bottom: 1px solid #DBDBDB;
   padding-top: 6px;
   line-height: normal;
   height: 53px;
 }

 .country-class span.code {
   color: #9D1C20;
 }

 .country-class i {
   color: #9D1C20;
   font-size: 13px;
 }

 .country-class .dropdown {
   display: none;
   position: absolute;
   top: calc(100% + 4px);
   left: 0;
   background: #fff;
   border: 0.5px solid #DBDBDB;
   border-radius: 8px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
   z-index: 10;
   width: 220px;
   max-height: 200px;
   overflow-y: auto;
 }

 .country-class .dropdown.open {
   display: block;
 }

 .country-class .dropdown-item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 14px;
   cursor: pointer;
   font-size: 14px;
   color: #030303;
 }

 .country-class .dropdown-item:hover {
   background: #F1F5F9;
 }

 .country-class .d-code {
   color: #9D1C20;
   font-weight: 500;
   min-width: 42px;
 }

 .country-main-class .field {
   flex: 1;
 }

 /* Modal Overlay */
 .modal-overlay {
   display: none;
   position: fixed;
    inset: 0;
    background: #030303d1;
    z-index: 9999;
    align-items: center;
    justify-content: center;
 }

 .modal-overlay.active {
   display: flex;
 }

 .modal-overlay .card-section {
   background: #fff;
   border-radius: 12px;
   padding: 24px;
   
    padding-top: 35px;
   max-height: 90vh;
   min-height: 320px;
   /* overflow-y: scroll; */
   width: calc(100% - 32px);
   max-width: 900px;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
   animation: popIn 0.22s cubic-bezier(.34, 1.56, .64, 1) both;
   overflow-y: auto;
 }

 @keyframes popIn {
   from {
     transform: scale(0.92);
     opacity: 0;
   }

   to {
     transform: scale(1);
     opacity: 1;
   }
 }



 .profile-dtail-mobile {
   max-width: 450px;
 }

 .wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 150px;
 }

 .profile-upload {
   position: relative;
   width: 90px;
   height: 90px;
   cursor: pointer;
 }

 .profile-upload input[type="file"] {
   display: none;
 }

 .profile-circle {
   width: 90px;
   height: 90px;
   border-radius: 50%;
   overflow: hidden;
   background: #c8c8c8;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .profile-circle img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: none;
 }

 .profile-circle img.visible {
   display: block;
 }

 .profile-circle .placeholder {
   font-size: 38px;
   color: #AAAAAA;
 }

 .camera-btn {
   position: absolute;
   bottom: 2px;
   right: 2px;
   width: 26px;
   height: 26px;
   background: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
   border: 1.5px solid #eee;
 }

 .camera-btn i {
   font-size: 14px;
   color: #444;
 }

 .profile-circle img#preview {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: none;
 }

 .profile-circle img#preview.visible {
   display: block;
 }

 .profile-circle img.placeholder-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .profile-dtail-mobile .field input {
   border-bottom: 1px solid #DBDBDB;
   font-weight: bold;
 }

 /* ========== PROPOSED BUSINESS NAME ========== */
 .pbn-wrap {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
   padding: 10px 0 40px;
 }

 #page-orders p {
   color: #AAAAAA;
   font-size: 15px;
 }

 #page-orders .pbn-col-pref {
   text-align: center;

 }

 .pbn-table {
   margin: 28px 0 24px;
   text-align: left;
 }

 .pbn-head-row {
   display: flex;
   align-items: center;
   gap: 24px;
   padding: 0 0 10px;
   border-bottom: 1.5px solid #E2E8F0;
 }

 .pbn-col-pref {
   width: 100px;
   min-width: 100px;
   font-weight: 700;
   font-size: 19px;
   color: #182A52;
 }

 .pbn-col-name {
   font-weight: 700;
   font-size: 19px;
   color: #182A52;
 }

 .pbn-note {
   font-weight: 700;
   font-size: 13px;
   color: #4A90E2;
   margin-left: 0;
   line-height: normal;
 }

 .pbn-row {
   display: flex;
   align-items: center;
   gap: 24px;
   padding: 4px 0;
 }

 .pbn-row .pbn-col-pref {
   font-weight: 400;
   color: #465575;
   font-size: 15px;
   text-align: center;
   padding: 12px 0 3px;
 }

 .pbn-input {
   flex: 1;
   border: none;
   outline: none;
   font-size: 15px;
   color: #465575;
   padding: 12px 0 3px;
   background: transparent;
   border-bottom: 1px solid #E2E8F0;
 }

 .pbn-input:focus {
   color: #9E1C1F;
 }

 .pbn-actions {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
   margin-top: 10px;
 }


 .pbn-data-table {
   width: 100%;
   border-collapse: collapse;
   font-size: 15px;
 }

 .pbn-data-table thead tr {
   background: #DAE5FF;
   border: 1px solid #DBDBDB;
 }

 .pbn-data-table th {
   text-align: left;
   padding: 12px 20px;
   font-weight: 700;
   font-size: 15px;
   color: #182A52;
   border: 1px solid #DBDBDB;
 }

 .pbn-data-table td {
   padding: 12px 20px;
   color: #465575;
   font-size: 14px;
   border: 1px solid #DBDBDB;
 }

 .pbn-data-table tbody tr:hover {
   background: #FAFBFF;
 }

 .pbn-data-table tbody {
   background-color: #dbdbdb1c;
 }



 /* ========== LOGIN MODAL ========== */
 .login-modal {
   max-width: 500px !important;
   min-height: auto !important;
 }

 .login-newuser {
   margin-top: 16px;
   font-size: 14px;
   color: #465575 !important;
   text-align: left;
 }

 .login-newuser a {
   color: #4A90E2;
   font-weight: 700;
   text-decoration: none;
 }

 .login-newuser a:hover {
   text-decoration: underline;
 }

 .login-divider {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 24px 0 20px;
   color: #AAAAAA;
   font-size: 14px;
 }

 .login-divider::before,
 .login-divider::after {
   content: '';
   flex: 1;
   height: 1px;
   background: #E2E8F0;
 }

 .login-social {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
 }

 .social-btn {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: #fff;
   text-decoration: none;
   transition: opacity 0.15s, transform 0.15s;
 }

 .social-btn:hover {
   opacity: 0.85;
   transform: translateY(-2px);
   color: #fff;
 }

 .facebook-btn {
   background: #3B5998;
 }

 .google-btn {
   background: #D92B13;
 }
.default-btn{
  cursor: pointer;
}



/* ==========================
   Step Visibility
========================== */
.auth-step {
  display: none;
}

.auth-step.active-step {
  display: block !important;
}

/* ==========================
   Typography & Utilities
========================== */
.sub-text { 
font-weight: 400;
font-size: 15px;
line-height: 20px; 
letter-spacing: -0.0066664px;

color: rgba(3, 3, 3, 0.7);
}
.mid-text{ 
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 25px; 
color: #030303;


}
.note-text {  
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px; 
letter-spacing: -0.0058331px;
color: #AAAAAA;
text-align: left;
margin-top: 4px;

}

.position-relative {
  position: relative;
}

.d-flex-gap {
  display: flex;
  gap: 15px;
}

.w-50 {
  width: 50%;
}

.skip-wrap {
  margin-top: 15px;
  text-align: center;
}

.skip-wrap a {
  font-size: 14px;
  font-weight: 600;
  color: #4A90E2;
  text-decoration: none;
}

/* ==========================
   Header & Back Button
========================== */
.section-head-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.head-left-side {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.back-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
      position: absolute;
    left: 5px;
    top: 10px;
}

.back-arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: #333;
  transition: transform 0.2s ease;
}

.back-arrow-btn:hover svg {
  transform: translateX(-2px);
}

/* ==========================
   Action Buttons
========================== */
.resend-btn {
    position: absolute;
    top: 23px;
    right: 0;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #4A90E2;
    text-decoration: none; 
}

.show-hide-btn {
 position: absolute;
    bottom: 9px;
    right: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #AAAAAA;
    background: transparent;
    border: 0;
}

.top-bar-inner { 
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center; 
  margin-top: 30px;
}

.back-link {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  color: #9E1D21;
  display: flex;
  align-items: center; 
}
.back-link i {
    font-size: 12px;
    transition: .3s;
}
.back-link:hover i {
    margin-left: -2px;
}

/* ==========================
   Disabled Button State
========================== */
button.disabled-btn {
  background-color: #a9a9a9 !important;
  border-color: #a9a9a9 !important;
  color: #fff !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================
   Error Message
========================== */
.error-msg {
  display: none;  
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px; 
letter-spacing: -0.0058331px;
color: #CC0000; 
text-align: left;
margin-top: 4px;
}

/* ==========================
   Password Validation Chips
========================== */
.password-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 17px;
}

.req-chip {
  padding: 4px 10px;  
  font-size: 11px; 
  background: #fff;
  transition: all 0.3s ease; 
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #030303;


border: 0.5px solid #5BD700;
border-radius: 16.5px;

}

.req-chip.valid-chip {
  border-color: #4caf50;
  color: #4caf50;
}

.req-chip.valid-chip::before {
  content: "\2713 ";
  font-weight: bold;
}

.signup-sec .default-btn{
  width: 100%;
  margin-top: 20px;
}
/* NEW REQUIRED STYLES FOR CHIPS AND VISIBILITY */
  .auth-step { display: none; }
  .auth-step.active-step { display: block !important; }
  
  /* Initial Red/Invalid Style */
  .req-chip-new {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #d32f2f;
    color: #d32f2f;
    background: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  /* Valid State: Font color becomes black, border becomes light grey/green */
  .req-chip-new.valid-chip {
    border-color: #4caf50;
    color: #333333; /* Text goes to black */
  }
  
  /* Adding checkbox only when valid */
  .req-chip-new.valid-chip::before {
    content: "\2713"; /* Checkmark symbol */
    font-weight: bold;
    color: #4caf50; /* Checkmark stays green */
    margin-right: 2px;
  }
 /*responsive css start here*/

 .auth-social-wrap {
   width: 100%;
   max-width: 420px;
   margin: auto;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .auth-btn {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   border-radius: 50px;
   text-decoration: none;
   font-size: 18px;
   font-weight: 700;
   transition: all .25s ease;
   overflow: hidden;
   padding: 10px 35px;
 }

 /* ICON */
 .auth-btn svg,
 .auth-btn i {
   width: 24px;
   height: 24px;
   object-fit: contain;
   font-size: 24px;
   position: absolute;
   left: 22px;
 }

 /* GOOGLE */
 .auth-google {
   background: #fff;
   color: #182A52;
   border: 1.5px solid #D7DCE5;
   box-shadow:
     0 2px 8px rgba(15, 23, 42, .04);
 }

 .auth-google:hover {
   transform: translateY(-2px);
   box-shadow:
     0 8px 24px rgba(15, 23, 42, .08);
   border-color: #C9D2E2;
 }

 /* FACEBOOK */
 .auth-facebook {
   background: linear-gradient(135deg, #1877F2, #3b5999);
   color: #fff;
   border: none;
   box-shadow:
     0 8px 20px rgba(24, 119, 242, .22);
 }

 .auth-facebook:hover {
   transform: translateY(-2px);
   box-shadow:
     0 10px 28px rgba(24, 119, 242, .32);
 }

 .auth-btn:hover {
   color: #182A52;
 }

 /* ACTIVE */
 .auth-btn:active {
   transform: scale(.98);
 }

 .auth-facebook:hover {
   color: white;
 }




 /* ---------- Tablet + Mobile ---------- */
 @media (max-width: 991px) {
   .top-header {
     height: 62px;
     min-height: 62px;
     padding: 8px 14px;
   }

   .smllogo img,
   .logo img {
     width: 105px;
     height: auto;
   }

   .header-links a {
     font-size: 13px;
     padding: 0 5px;
   }

   .header-links span {
     display: none;
   }

   .my-account {
     padding: 0 4px;
   }

   .my-account-text {
     font-size: 13px;
     white-space: nowrap;
   }

   .dropdown-menu {
     right: 0;
     min-width: 155px;
   }

   .service-bar {
     top: 62px;
     height: 68px;
     justify-content: flex-start;
     padding: 7px 10px 0;
     overflow-x: auto;
     overflow-y: hidden;
     white-space: nowrap;
   }

   .service-item {
     min-width: 86px;
     padding: 5px 8px 8px;
   }

   .service-icon,
   .service-icon img {
     width: 22px;
     height: 22px;
   }

   .service-item span {
     font-size: 11.5px;
     line-height: 15px;
   }

   /* fixed icon sidebar */
   .sidebar {
     position: fixed;
     top: 130px;
     left: 0;
     bottom: 0;
     width: 56px;
     height: auto;
     padding: 10px 0;
     display: block;
     overflow-x: hidden;
     overflow-y: auto;
     border-right: 1px solid #E2E8F0;
     border-bottom: 0;
     background: #F5F8FF;
     z-index: 1002;
     transition: width 0.22s ease, box-shadow 0.22s ease;
   }

   .sidebar:hover,
   .sidebar:focus-within {
     width: 240px;
     box-shadow: 8px 0 24px rgba(15, 23, 42, 0.14);
   }

   .sidebar-group,
   .nav-parent,
   .nav-item {
     width: 240px;
   }

   .sidebar-group {
     margin: 0;
   }

   .nav-parent,
   .nav-item {
     min-height: 43px;
     padding: 10px 14px 10px 17px;
     border: 0;
     border-radius: 0;
     background: transparent;
     box-shadow: none;
     font-size: 14px;
     white-space: nowrap;
   }

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

   .nav-parent .left {
     gap: 13px;
   }

   .sidebar-icon,
   .nav-parent img:first-child,
   .nav-item img:first-child {
     width: 21px;
     min-width: 21px;
     height: 21px;
   }

   .nav-parent .left span,
   .chev {
     opacity: 0;
     visibility: hidden;
     transition: 0.18s ease;
   }

   .sidebar:hover .nav-parent .left span,
   .sidebar:hover .chev,
   .sidebar:focus-within .nav-parent .left span,
   .sidebar:focus-within .chev {
     opacity: 1;
     visibility: visible;
   }

   .nav-submenu {
     display: none !important;
     margin-left: 34px;
     padding-left: 8px;
   }

   .sidebar:hover .sidebar-group.open .nav-submenu,
   .sidebar:focus-within .sidebar-group.open .nav-submenu {
     display: block !important;
   }

   .nav-submenu .nav-item {
     width: 180px;
     min-height: auto;
     padding: 7px 10px;
     font-size: 13px;
     border-radius: 8px;
   }

   .nav-parent.active:after {
     left: 52px;
     right: auto;
     top: 7px;
     height: 32px;
     border-radius: 0 60px 60px 0;
   }

   .sidebar:hover .nav-parent.active:after,
   .sidebar:focus-within .nav-parent.active:after {
     left: auto;
     right: 0;
     border-radius: 60px 0 0 60px;
   }

   .main-content,
   .empty-page,
   .inbox-page {
     margin-left: 56px;
     margin-top: 130px;
     padding: 18px 12px 34px;
     min-height: calc(100vh - 130px);
     width: auto;
   }

   .welcome-section {
     margin-bottom: 16px;
   }

   .welcome-section h1 {
     font-size: 18px;
     line-height: 24px;
   }

   .new-order-bar {
     flex-direction: column;
     align-items: stretch;
     gap: 12px;
     padding: 16px;
     margin-bottom: 16px;
     border-radius: 10px;
   }

   .order-label {
     font-size: 16px;
     white-space: normal;
   }

   .order-select {
     width: 100%;
     flex: none;
     padding: 8px 0;
     font-size: 15px;
   }

   .btn-get-started {
     width: 100%;
     height: 48px;
     border-radius: 8px;
   }

   .dashboard-grid,
   .stats-grid {
     grid-template-columns: 1fr;
     gap: 14px;
     max-width: 100%;
   }

   .main-content .card,
   .stat-card,
   .completion-banner,
   .card-section {
     padding: 16px;
     border-radius: 10px;
     min-height: auto;
   }

   .card-headers h3,
   .stat-card h3,
   .completion-banner h5,
   .card-section .section-title {
     font-size: 19px;
     line-height: 24px;
   }

   .card p,
   .page-subtitle,
   .completion-banner p,
   .section-subtitle {
     font-size: 14px;
     line-height: 20px;
   }

   .badge {
     font-size: 14px;
     line-height: 18px;
     text-align: left;
   }

   .page-title {
     font-size: 24px;
   }

   .stat-number {
     font-size: 32px;
   }

   .stat-label {
     font-size: 15px;
     line-height: 20px;
   }

   /* profile page fix */
   .profile-row {
     display: grid;
     grid-template-columns: 1fr auto;
     gap: 16px;
     align-items: start;
   }

   .profile-row-col-md-8,
   .profile-row-col-md-4 {
     width: auto;
   }

   .profile-content .align-items-center.d-flex {
     gap: 12px;
     flex-wrap: wrap;
   }

   .profile-image {
     width: 92px;
     height: 92px;
     margin: 0;
   }

   a.iconlink {
     left: auto;
     right: 0;
     bottom: -5px;
   }

   .completion-steps {
     display: grid;
     grid-template-columns: 1fr;
     gap: 9px;
     width: 100%;
     padding: 12px;
     border-radius: 16px;
   }

   .step-chip {
     font-size: 14px;
     line-height: 19px;
     word-break: break-word;
   }

   .progress-bar-track {
     max-width: 100%;
   }

   .section-head {
     gap: 12px;
   }

   .field-row {
     display: grid;
     grid-template-columns: 105px 1fr auto;
     gap: 8px 12px;
     align-items: start;
   }

   .field-label {
     width: auto;
     font-size: 14px;
     line-height: 18px;
   }

   .field-value,
   .field-action,
   .view-link {
     font-size: 14px;
     line-height: 19px;
     word-break: break-word;
   }

   .company-item {
     display: grid;
     grid-template-columns: 20px 1fr;
     gap: 6px 10px;
     padding: 12px;
     border: 1px solid #E2E8F0;
     border-radius: 10px;
     background: #FCFDFF;
   }

   .company-cin,
   .view-link {
     grid-column: 2;
   }

   .notif-row {
     display: grid;
     grid-template-columns: 1fr 20px;
     gap: 8px 10px;
   }

   .notif-label {
     width: auto;
   }

   .notif-row .flex-grow-1 {
     grid-column: 1 / -1;
   }

   .login-pass-gen .fields {
     grid-template-columns: 1fr;
   }

   .modal-overlay {
     padding: 12px;
   }

   .modal-overlay .card-section {
     width: 100%;
     max-width: 100%;
     max-height: 88vh;
     overflow-y: auto;
   }
 }

 @media (max-width: 768px) {
   .pbn-wrap {
     padding: 10px 0 24px;
   }

   .pbn-col-pref {
     width: 70px;
     min-width: 70px;
     font-size: 16px;
   }

   .pbn-col-name {
     font-size: 16px;
   }

   .pbn-input {
     font-size: 14px;
   }

   .pbn-actions {
     flex-direction: row;
     gap: 10px;
   }

   .pbn-actions .default-btn {
     flex: 1;
     text-align: center;
     font-size: 15px;
     padding: 12px 10px;
   }

   .pbn-data-table th,
   .pbn-data-table td {
     padding: 10px 12px;
     font-size: 13px;
   }
 }


 /* ---------- Small Mobile ---------- */
 @media (max-width: 575px) {
   .top-header {
     height: 58px;
     min-height: 58px;
     padding: 7px 10px;
   }

   .smllogo img,
   .logo img {
     width: 86px;
   }

   .header-links {
     display: none;
   }

   .service-bar {
     top: 58px;
     height: 66px;
   }

   .service-item {
     min-width: 78px;
   }

   .service-item span {
     font-size: 10.8px;
   }

   .sidebar {
     top: 124px;
     width: 52px;
   }

   .sidebar:hover,
   .sidebar:focus-within {
     width: 220px;
   }

   .sidebar-group,
   .nav-parent,
   .nav-item {
     width: 220px;
   }

   .nav-parent,
   .nav-item {
     padding-left: 15px;
     font-size: 13px;
   }

   .nav-parent.active:after {
     left: 48px;
   }

   .main-content,
   .empty-page,
   .inbox-page {
     margin-left: 52px;
     margin-top: 124px;
     padding: 16px 10px 30px;
   }

   .profile-row {
     grid-template-columns: 1fr;
   }

   .profile-image {
     margin: 0 auto;
   }

   .field-row {
     grid-template-columns: 1fr;
     gap: 5px;
   }

   .section-head {
     /* flex-direction: column; */
     align-items: flex-start;
   }

   .company-item {
     grid-template-columns: 1fr;
   }

   .company-cin,
   .view-link {
     grid-column: 1;
   }

   .space-divider {
     height: 10px;
   }

   .login-pass-gen a.default-btn {
     min-width: 178px;
     margin: auto;
     font-size: 18px;
   }

   .pbn-col-pref {
     min-width: 40px;
     font-size: 14px;
   }

   .pbn-col-name {
     font-size: 14px;
   }

   .pbn-head-row {
     gap: 12px;
   }

   .pbn-row {
     gap: 12px;
   }

   .pbn-input {
     font-size: 13px;
     padding: 10px 0 3px;
   }

   .pbn-actions {
     flex-direction: column;
     gap: 10px;
   }

   .pbn-actions .default-btn {
     width: 100%;
     text-align: center;
   }

   /* Stack table on very small screens */
   .pbn-data-table thead {
     display: none;
   }

   .pbn-data-table tbody tr {
     display: block;
     margin-bottom: 10px;
     border: 1px solid #DBDBDB;
     border-radius: 8px;
     padding: 10px;
     background: #fafbff;
   }

   .pbn-data-table td {
     display: flex;
     justify-content: space-between;
     border: none;
     border-bottom: 1px solid #f0f0f0;
     padding: 8px 4px;
     font-size: 13px;
   }

   .pbn-data-table td:last-child {
     border-bottom: none;
   }

   .pbn-data-table td::before {
     content: attr(data-label);
     font-weight: 700;
     color: #182A52;
     min-width: 100px;
   }

   .auth-btn {
     font-size: 17px;
   }
 }



 /* ---------- Extra Small Mobile ---------- */
 @media (max-width: 380px) {

   .smllogo img,
   .logo img {
     width: 78px;
   }

   .sidebar {
     width: 48px;
   }

   .sidebar:hover,
   .sidebar:focus-within {
     width: 205px;
   }

   .sidebar-group,
   .nav-parent,
   .nav-item {
     width: 205px;
   }

   .main-content,
   .empty-page,
   .inbox-page {
     margin-left: 48px;
     padding-inline: 8px;
   }

   .main-content .card,
   .stat-card,
   .completion-banner,
   .card-section,
   .new-order-bar {
     padding: 14px;
   }

   .card-headers h3,
   .stat-card h3,
   .completion-banner h5,
   .card-section .section-title {
     font-size: 18px;
   }
 }


 @media(max-width:374px) {

   .auth-btn {
     font-size: 16px;
     padding: 10px 20px;
     gap: 10px;
     justify-content: space-between;
   }

   .auth-btn img {
     width: 22px;
     height: 22px;
     left: 18px;
   }

   .auth-btn svg,
   .auth-btn i {
     position: inherit;
   }
 }

/* =========================================================
   ADD-ON: Sidebar dropdown items as top page tabs + Orders table
   ========================================================= */
.page-top-tabs {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 0 18px;
  padding: 8px 0;
}

.page-top-tabs::-webkit-scrollbar {
  display: none;
}

.page-top-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #D5DAE3;
  background: #FFFFFF;
  color: #182A52;
  border-radius: 999px;
  min-height: 32px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(195, 197, 212, 0.24);
  transition: 0.18s ease;
}

.page-top-tab:hover,
.page-top-tab.active {
  color: #9E1D20;
  border-color: #9E1D20;
  background: #FFF8F8;
}

.lb-orders-page {
  width: 100%;
  max-width: 100%;
}

.lb-orders-toolbar {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.lb-orders-title {
  margin: 0;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  color: #000;
}

.lb-select-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #B5B5B5;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.lb-search-box {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  background: #fff;
}

.lb-search-box i {
  color: #D3D3D3;
  font-size: 15px;
}

.lb-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #182A52;
  font-size: 13px;
  line-height: 1;
}

.lb-search-box input::placeholder {
  color: #B5B5B5;
}

.lb-orders-card {
  border: 1px solid #E6E6E6;
  background: #fff;
  overflow: hidden;
}

.lb-orders-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.lb-orders-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.lb-orders-table th,
.lb-orders-table td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #E4E4E4;
  color: #000;
}

.lb-orders-table th {
  height: 44px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #182A52;
}

.lb-orders-table td {
  height: 44px;
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
}



.lb-orders-table tr.selected {
  background: #F4E4E5;
}

.lb-action-cell {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lb-row-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #BFC4CA;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.lb-row-check:checked {
  border-color: #9E1D20;
  background: #F7F7F7;
}

.lb-row-check:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  left: 3px;
  top: 4px;
  border-left: 1.8px solid #9E1D20;
  border-bottom: 1.8px solid #9E1D20;
  transform: rotate(-45deg);
}

.lb-icon-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #9E1D20;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  font-size: 11px;
  cursor: pointer;
  padding: 0;
}

.lb-icon-btn:hover {
  background: #FFF8F8;
}

.lb-pagination-wrap {
  display: grid;
  grid-template-columns: 120px 1fr 100px;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  color: #B5B5B5;
  font-size: 13px;
}

.lb-page-size {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-page-size select {
  width: 54px;
  height: 36px;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  background: #fff;
  color: #182A52;
  padding: 0 8px;
  font-size: 13px;
}

.lb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lb-page-btn,
.lb-page-num {
  border: 0;
  background: transparent;
  color: #182A52;
  min-width: 18px;
  height: 28px;
  padding: 0 3px;
  font-size: 12px;
  cursor: pointer;
}

.lb-page-btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  color: #9E1D20;
  background: #fff;
}

.lb-page-text {
  min-width: 78px;
  padding: 0 12px;
  font-weight: 700;
}

.lb-page-num.active {
  min-width: 18px;
  height: 18px;
  color: #fff;
  background: #9E1D20;
  border-radius: 2px;
}

.lb-page-count {
  text-align: right;
}
/* =========================================================
   MOBILE TOP TABS - SHOW BELOW BEGIN NEW ORDER
   ========================================================= */

.page-top-tabs {
  display: none;
}

@media (max-width: 991px) {
  .page-top-tabs {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    margin: 14px 0 22px;
    padding: 0 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .page-top-tabs::-webkit-scrollbar {
    display: none;
  }

  .page-top-tab {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    border: 1px solid #D5DAE3;
    background: #FFFFFF;
    color: #182A52;
    border-radius: 999px;
    min-height: 42px;
    padding: 9px 22px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(195, 197, 212, 0.25);
    transition: all 0.18s ease;
  }

  .page-top-tab:hover,
  .page-top-tab.active {
    color: #9E1D20;
    border-color: #D92027;
    background: #FFFFFF;
  }

  .new-order-bar {
    margin-bottom: 0 !important;
  }

  .dashboard-grid {
    margin-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .page-top-tabs {
    gap: 12px;
    margin: 14px 0 22px;
  }

  .page-top-tab {
    min-height: 38px;
    padding: 8px 20px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .page-top-tab {
    padding: 8px 16px;
    font-size: 15px;
  }
}



/* =========================================================
   FINAL FIX: Dashboard mobile tabs only + All Orders data table
   ========================================================= */

/* Dashboard tabs hidden by default and shown only inside active dashboard on mobile */
.page-top-tabs {
  display: none !important;
}

@media (max-width: 991px) {
  #page-dashboard.active .page-top-tabs {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    margin: 14px 0 22px;
    padding: 0 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  #page-dashboard.active .page-top-tabs::-webkit-scrollbar {
    display: none;
  }

  #page-dashboard.active .page-top-tab {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    border: 1px solid #D5DAE3;
    background: #FFFFFF;
    color: #182A52;
    border-radius: 999px;
    min-height: 40px;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(195, 197, 212, 0.25);
    transition: all 0.18s ease;
  }

  #page-dashboard.active .page-top-tab:hover,
  #page-dashboard.active .page-top-tab.active {
    color: #9E1D20;
    border-color: #D92027;
    background: #FFFFFF;
  }
}

@media (max-width: 575px) {
  #page-dashboard.active .page-top-tab {
            min-height: 34px;
        padding: 8px 19px;
        font-size: 14px;
  }
}

/* All Orders new data table */
.lb-data-section {
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  box-shadow: 0px 5px 20px -2px rgba(195, 197, 212, 0.35);
}

.lb-data-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.lb-data-head h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #182A52;
}

.lb-data-head p {
  margin: 0;
  font-size: 14px;
  color: #465575;
}

.lb-data-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lb-data-actions button {
  height: 36px;
  padding: 0 18px;
  border: 1px solid #D5DAE3;
  border-radius: 999px;
  background: #fff;
  color: #182A52;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.lb-data-actions button:hover {
  border-color: #9E1D20;
  color: #9E1D20;
}

.lb-data-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.lb-data-table {
  width: 100%;
  min-width: 950px;
  border-collapse: collapse;
  background: #fff;
}

.lb-data-table th {
  padding: 13px 14px;
  background: #F5F8FF;
  border-bottom: 1px solid #E2E8F0;
  color: #182A52;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.lb-data-table td {
  padding: 14px;
  border-bottom: 1px solid #E9EEF5;
  color: #465575;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

.lb-data-table tbody tr:hover {
  background: #FAFBFF;
}

.lb-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.lb-status.pending {
  background: #FFF7E6;
  color: #B7791F;
}

.lb-status.progress {
  background: #EAF2FF;
  color: #2563EB;
}

.lb-status.completed {
  background: #ECFDF3;
  color: #14804A;
}

.lb-status.cancelled {
  background: #FFF1F2;
  color: #9E1D20;
}

.lb-view-btn {
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #9E1D20;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.lb-view-btn:hover {
  background: #182A52;
}

@media (max-width: 575px) {
  .lb-data-section {
    padding: 14px;
    margin-top: 18px;
  }

  .lb-data-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .lb-data-head h3 {
    font-size: 20px;
  }

  .lb-data-actions {
    width: 100%;
  }

  .lb-data-actions button {
    flex: 1;
  }

  .lb-data-table {
    min-width: 0;
  }

  .lb-data-table thead {
    display: none;
  }

  .lb-data-table,
  .lb-data-table tbody,
  .lb-data-table tr,
  .lb-data-table td {
    display: block;
    width: 100%;
  }

  .lb-data-table tr {
    margin-bottom: 12px;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .lb-data-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    font-size: 13px;
    text-align: right;
  }

  .lb-data-table td::before {
    content: attr(data-label);
    color: #182A52;
    font-weight: 700;
    text-align: left;
    flex: 0 0 42%;
  }

  .lb-status {
    min-width: auto;
  }
}


/* =========================================================
   ALL ORDERS - ORDER DETAILS + PAYMENTS SECTION
   ========================================================= */

.lb-order-details-section {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0px 5px 20px -2px rgba(195, 197, 212, 0.35);
}

.lb-order-details-title {
  margin: 0 0 22px;
  color: #182A52;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.lb-order-details-layout {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.lb-order-overview-card {
  border: 1px solid #D5DAE3;
  border-radius: 12px;
  overflow: hidden;
  background: #FCFDFF;
}

.lb-overview-head {
  padding: 15px 16px;
  background: #182A52;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
}

.lb-overview-body {
  padding: 18px 16px;
}

.lb-overview-row {
  margin-bottom: 20px;
  color: #465575;
  font-size: 14px;
  line-height: 1.45;
}

.lb-overview-row:last-child {
  margin-bottom: 0;
}

.lb-overview-row strong {
  display: block;
  margin-bottom: 4px;
  color: #182A52;
  font-size: 14px;
  font-weight: 800;
}

.lb-overview-row span {
  display: block;
}

.lb-invoice-btn {
  min-width: 74px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #9E1D20;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.lb-invoice-btn:hover {
  background: #182A52;
}

.lb-detail-table-wrap,
.lb-payment-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #FFFFFF;
}

.lb-detail-table,
.lb-payment-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.lb-detail-table th,
.lb-payment-table th {
  padding: 14px 14px;
  background: #182A52;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.lb-detail-table td,
.lb-payment-table td {
  padding: 14px 14px;
  border-bottom: 1px solid #E9EEF5;
  color: #26344D;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

.lb-detail-table tbody tr:hover,
.lb-payment-table tbody tr:hover {
  background: #FAFBFF;
}

.lb-detail-table tbody tr:last-child td,
.lb-payment-table tbody tr:last-child td {
  border-bottom: 0;
}

.lb-total-row td {
  background: #FFF8F8;
  color: #182A52;
  font-weight: 800;
}

.lb-total-row td:first-child {
  text-align: right;
}

.lb-payment-title {
  margin: 34px 0 18px;
  color: #182A52;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 991px) {
  .lb-order-details-section {
    padding: 18px;
  }

  .lb-order-details-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lb-order-overview-card {
    max-width: 100%;
  }

  .lb-order-details-title,
  .lb-payment-title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .lb-order-details-section {
    padding: 14px;
    border-radius: 12px;
  }

  .lb-order-details-title,
  .lb-payment-title {
    font-size: 21px;
  }

  .lb-detail-table,
  .lb-payment-table {
    min-width: 0;
  }

  .lb-detail-table thead,
  .lb-payment-table thead {
    display: none;
  }

  .lb-detail-table,
  .lb-detail-table tbody,
  .lb-detail-table tr,
  .lb-detail-table td,
  .lb-payment-table,
  .lb-payment-table tbody,
  .lb-payment-table tr,
  .lb-payment-table td {
    display: block;
    width: 100%;
  }

  .lb-detail-table tr,
  .lb-payment-table tr {
    margin-bottom: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
  }

  .lb-detail-table tr:last-child,
  .lb-payment-table tr:last-child {
    margin-bottom: 0;
  }

  .lb-detail-table td,
  .lb-payment-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-bottom: 1px solid #E9EEF5;
    text-align: right;
    font-size: 13px;
  }

  .lb-detail-table td::before,
  .lb-payment-table td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    color: #182A52;
    font-weight: 800;
    text-align: left;
  }

  .lb-total-row td:first-child {
    text-align: right;
  }
}

/* ===== DATATABLE UPDATED / EXTRA STYLE ===== */
/* ===== ALL ORDERS DATATABLE UPDATED STYLE ===== */
    #page-orders .lb-orders-page {
      width: 100%;
    }

    #page-orders .lb-data-section {
      background: #FFFFFF;
      border: 1px solid rgba(3, 3, 3, 0.1);
      box-shadow: 0px 5px 20px -2px rgba(195, 197, 212, 0.568133);
      border-radius: 10px;
      padding: 22px;
      margin-bottom: 24px;
    }

    #page-orders .lb-data-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    #page-orders .lb-data-head h3, #page-orders-details h3 {
      margin: 0 0 6px;
      font-weight: 800;
      font-size: 22px;
      line-height: 26px;
      color: #182A52;
    }
#page-orders-details h3 {
  margin-bottom: 10px;
}
#page-orders-details .lb-order-main-info h3{
  margin-top: 10px;
}
    #page-orders .lb-data-head p {
      margin: 0;
      color: #6B7280;
      font-size: 14px;
      line-height: 22px;
    }

    #page-orders .lb-data-table-wrap {
      width: 100%;
      overflow-x: auto;
    }

    #page-orders table.dataTable.lb-data-table {
      width: 100% !important;
      border-collapse: separate;
      border-spacing: 0;
      margin: 0 !important;
      color: #182A52;
      background: #fff;
    }

    #page-orders .lb-data-table thead th {
      background: #F5F8FF;
      color: #182A52;
      font-weight: 800;
      font-size: 14px;
      line-height: 18px;
      padding: 14px 14px;
      border-bottom: 1px solid #E2E8F0;
      white-space: nowrap;
 font-weight: 700; 
line-height: 20px; 


    }

    #page-orders .lb-data-table tbody td {
      padding: 14px;
      border-bottom: 1px solid #EEF2F7; 
      color: #465575;
      font-size: 14px;
      line-height: 20px;
      vertical-align: middle;
 
font-weight: 400;
font-size: 14px;
line-height: 16px; 
letter-spacing: -0.0058331px;

color: #030303;


    }

    #page-orders .lb-data-table tbody tr:hover td {
      background: #FCFDFF;
    }

    #page-orders .lb-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 92px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    #page-orders .lb-status.pending {
      background: rgba(158, 29, 32, 0.08);
      color: #9E1D20;
    }

    #page-orders .lb-status.progress {
      background: rgba(24, 42, 82, 0.08);
      color: #182A52;
    }

    #page-orders .lb-status.completed {
      background: rgba(34, 197, 94, 0.12);
      color: #15803D;
    }

    #page-orders .lb-status.cancelled {
      background: rgba(100, 116, 139, 0.12);
      color: #475569;
    }

    #page-orders .lb-view-btn {
      border: 1px solid #182A52;
      background: #fff;
      color: #182A52;
      min-width: 70px;
      height: 34px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: 0.15s ease;
    }

    #page-orders .lb-view-btn:hover {
      background: #9E1D20;
      border-color: #9E1D20;
      color: #fff;
    }

    #page-orders .dataTables_wrapper .dataTables_length,
    #page-orders .dataTables_wrapper .dataTables_filter {
      margin-bottom: 16px;
      color: #465575;
      font-size: 14px;
      font-weight: 700;
    }

    #page-orders .dataTables_wrapper .dataTables_length select,
    #page-orders .dataTables_wrapper .dataTables_filter input { 
      padding: 8px 12px;
      outline: none;
      color: #AAAAAA; 
      background: #FFFFFF;
      border: 1px solid #DBDBDB;
      border-radius: 4px;
      font-weight: 400;
      font-size: 16px; 
      line-height: 22px; 
      letter-spacing: -0.0066664px; 

    }

    #page-orders .dataTables_wrapper .dataTables_filter input {
      min-width: 320px;
      margin-left: 8px;
    }

    #page-orders .dataTables_wrapper .dataTables_info {
      padding-top: 18px;
      color: #64748B;
      font-size: 13px;
      font-weight: 600;
    }

    #page-orders .dataTables_wrapper .dataTables_paginate {
      padding-top: 14px;
    }

    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button {
      border: 1px solid #E2E8F0 !important;
      border-radius: 4px !important;
      padding: 6px 12px !important;
      margin-left: 5px !important;
      color: #182A52 !important;
      background: #fff !important;
      font-weight: 800;
      font-size: 13px;
    }

    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
      background: #9E1D20 !important;
      border-color: #9E1D20 !important;
      color: #fff !important;
    }

    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
      background: #182A52 !important;
      border-color: #182A52 !important;
      color: #fff !important;
    }

    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
    #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
      opacity: 0.45;
      color: #94A3B8 !important;
      background: #fff !important;
      border-color: #E2E8F0 !important;
    }

    @media (max-width: 767px) {
      #page-orders .lb-data-section {
        padding: 16px;
      }

      #page-orders .lb-data-head {
        display: block;
      }

      #page-orders .dataTables_wrapper .dataTables_length,
      #page-orders .dataTables_wrapper .dataTables_filter,
      #page-orders .dataTables_wrapper .dataTables_info,
      #page-orders .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: left;
        width: 100%;
      }

      #page-orders .dataTables_wrapper .dataTables_filter input {
        width: 100%;
        min-width: 0;
        margin: 8px 0 0;
      }

      #page-orders .dataTables_wrapper .dataTables_paginate {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      #page-orders .dataTables_wrapper .dataTables_paginate .paginate_button {
        flex: 0 0 auto;
        margin-left: 0 !important;
      }
    }

  

/* =========================================================
   FINAL FIX: Mobile me All Orders table desktop jaisi rahe
   Card/stack layout remove + horizontal scroll enable
   ========================================================= */
#page-orders .lb-data-table-wrap,
#page-orders .dataTables_wrapper,
#page-orders .dataTables_scroll,
#page-orders .dataTables_scrollBody {
  width: 100%;
}

#page-orders .lb-data-table-wrap,
#page-orders .dataTables_scrollBody {
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#page-orders table.dataTable.lb-data-table,
#page-orders .lb-data-table {
  width: 100% !important;
  min-width: 1050px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

#page-orders .dataTables_scrollHeadInner,
#page-orders .dataTables_scrollHeadInner table,
#page-orders .dataTables_scrollBody table {
  min-width: 1050px !important;
}
table.dataTable thead tr th:after, table.dataTable thead tr th:before{
  right: 0 !important;
}

@media (max-width: 575px) {
  #page-orders .lb-data-section {
    padding: 14px;
    overflow: hidden;
  }

  #page-orders .lb-data-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #page-orders .lb-data-table-wrap {
    overflow-x: auto !important;
  }

  #page-orders .lb-data-table,
  #page-orders table.dataTable.lb-data-table {
    display: table !important;
    width: 100% !important;
    min-width: 1050px !important;
  }

  #page-orders .lb-data-table thead {
    display: table-header-group !important;
  }

  #page-orders .lb-data-table tbody {
    display: table-row-group !important;
  }

  #page-orders .lb-data-table tr {
    display: table-row !important;
    width: auto !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  #page-orders .lb-data-table th,
  #page-orders .lb-data-table td {
    display: table-cell !important;
    width: auto !important;
    text-align: left !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    padding: 14px !important;
    font-size: 14px !important;
  }

  #page-orders .lb-data-table td::before {
    display: none !important;
    content: none !important;
  }

  #page-orders .lb-status {
    min-width: 92px !important;
  }

  #page-orders .dataTables_wrapper .dataTables_length,
  #page-orders .dataTables_wrapper .dataTables_filter,
  #page-orders .dataTables_wrapper .dataTables_info,
  #page-orders .dataTables_wrapper .dataTables_paginate {
    float: none !important;
    width: 100% !important;
    text-align: left !important;
  }

  #page-orders .dataTables_wrapper .dataTables_filter {
    margin-top: 12px;
  }

  #page-orders .dataTables_wrapper .dataTables_filter input {
    width: 100% !important;
    box-sizing: border-box;
    margin-left: 0 !important;
  }

  #page-orders .dataTables_wrapper .dataTables_paginate {
    margin-top: 12px;
    text-align: center !important;
  }
}
