@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "Archivo", sans-serif;
    /* height: 100vh; */
}

.login-container {
    display: flex;
    height: 100%;
}

.left-panel {
    background: #cee5ed;
    width: 55%;
    position: fixed;
    top: 0;
    height: 100%;
}

.right-panel {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 100%;
    min-height: 100vh;
    left: 55%;
    right: 0;
    position: relative;
    padding: 30px 15px;
}

.form-title {
    font-size: 20px;
    line-height: 1.75rem;
    font-weight: 700;
}

.sub-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.75;
    color: rgb(42, 53, 71);
}

.form-label {
    font-size: 11px;
    font-weight: 500;
    color: rgb(42, 53, 71);
}

.remember-check label {
    font-size: 11px;
}

.forget-pass a {
    font-size: 11px;
    line-height: 1.334rem;
    font-weight: 500;
    color: rgb(10, 126, 164);
    text-decoration: none;
}

.form-box {
    width: 100%;
    max-width: 400px;
}

.submit-btn {
    background-color: #0a7ea4;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 10px;
}

.submit-btn:hover {
    background-color: #025e7b;
    color: #fff;
}

.field-info {
    font-size: 9px;
    color: #2a3547;
}

.indicators-circle.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    background-color: #000;
    opacity: 0.2;
    border-radius: 50%;
    transition: 0.1s ease;
}

.indicators-circle.carousel-indicators .active {
    background-color: #007aff;
    opacity: 1;
}

.tabler-icon {
    width: 22px;
    height: 25px;
}

.verify-btn {
    background: #fa896b;
    padding: 6px 16px;
    border-radius: 20px !important;
    color: #fff;
    font-size: 11px;
    height: 28px;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 500;
}

.verify-btn:hover {
    background: #f3704d;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
}

#verifyLoader {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.verify-continue-btn {
    background: #0a7ea4;
    font-size: 11px;
    color: #fff;
    border-radius: 10px;
    padding: 6px 16px;
}

#otpMessage {
    font-size: 11px;
}

.type-text {
    font-size: 11px;
    font-weight: 500;
}

.otp-input:hover {
    border-color: rgb(10, 126, 164);
}

.otp-input:focus {
    border: 2px solid rgb(10, 126, 164);
    box-shadow: none;
}

.resend-text {
    font-size: 11px;
}

.footer-text {
    font-size: 11px;
}

.footer-text a {
    text-decoration: none;
    color: rgb(10, 126, 164);
}

.form-box .input-group-text {
    background: rgb(234, 239, 244);
    color: rgba(0, 0, 0, 0.54);
    border-radius: 10px;
    border: none;
}

.form-box input.form-control {
    padding: 10px 20px;
    font-size: 12px;
    color: #2a3547;
    border-radius: 10px;
    border: none;
}

.form-box label a {
    color: #000;
    font-size: 12px;
}

.footer-links a {
    font-size: 12px;
    color: rgb(42, 53, 71);
    font-weight: 500;
}

.footer-btn a {
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(10, 126, 164, 0.5);
    padding: 7px 21px;
    border-radius: 10px;
    color: #0a7ea4;
    font-weight: 500;
    width: 100%;
}

.form-box ::placeholder {
    color: #959595;
}

.phone-code {
    font-size: 12px;
    color: #000;
}

#userType {
    font-size: 11px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #2a3547;
}

#userType option {
    color: #2a3547;
}

.requird-icon {
    color: #ff0000;
}

.input-group {
    border: 1px solid rgb(223, 229, 239);
    border-radius: 10px;
}

.input-group:hover {
    border: 1px solid rgb(10, 126, 164);
    border-radius: 10px;
}

.input-group input:focus {
    box-shadow: none;
}

@media (max-width: 767px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
        left: 0;
    }

    .login-container {
        height: auto;
    }
}

/* Dashboard CSS */

.sidebar {
    width: 190px;
    min-height: 100vh;
    transition: width 0.3s;
    background-color: #ffffff;
    border-right: 1px solid #dee2e6;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 6px !important;
}

.sidebar.collapsed {
    width: 87px;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 9px 11px;
    color: #333;
    font-size: 16px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    background-color: rgb(206, 229, 237);
    color: rgb(10, 126, 164);
    border-radius: 10px;
}

.sidebar .nav-link.active {
    background: rgb(10, 126, 164);
    color: #fff;
    border-radius: 10px;
}

.sidebar .icon {
    width: 24px;
    text-align: center;
    margin-right: 15px;
    font-size: 18px;
}

.sidebar.collapsed .icon {
    margin-right: 0px;
}

.sidebar .label {
    transition: opacity 0.3s;
    font-size: 11px;
}

/* Sidebar submenu */
.sidebar .submenu {
    padding: 0px;
    margin: 7px 0;
}

.sidebar .sidebar-collapse .submenu .nav-link {
    padding: 11px 6px;
    font-size: 11px;
    color: #495057;
    gap: 18px;
}

.sidebar .submenu .nav-link.active {
    background: transparent;
    color: #0a7ea4;
}

.sidebar .submenu .nav-link:hover {
    background-color: rgb(234, 239, 244);
    border-radius: 8px;
    color: #0a7ea4;
}

/* Rotate chevron when dropdown is open */
.sidebar .nav-link .tabler-icon-chevron-down {
    transition: transform 0.2s ease;
}

.sidebar .nav-link[aria-expanded="true"] .tabler-icon-chevron-down {
    transform: rotate(180deg);
}

.sidebar.collapsed .label {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

/* Removed unsupported :has based rule */

.nav {
    padding: 0 24px;
}

.toggle-btn {
    position: absolute;
    top: 15px;
    left: 260px;
    z-index: 1000;
    transition: left 0.3s;
}

.sidebar.collapsed+.toggle-btn {
    left: 90px;
}

.main-content {
    margin-left: 190px;
    transition: margin-left 0.3s;
    background: rgb(246, 247, 250);
}

.sidebar.collapsed~.main-content {
    margin-left: 88px;
}

.header-items {
    display: flex;
    gap: 6px;
    align-items: center;
    padding-right: 10px;
}

.bell-icon {
    margin: 0 20px 0 20px;
}

.top-header {
    padding: 5px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(4px);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 6px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

#toggleSidebar {
    border: none;
}

#toggleSidebar svg {
    stroke: rgb(42, 53, 71);
}

#toggleSidebar:active {
    border: none !important;
}

.search-bar {
    flex: 1;
    max-width: 35rem;
    border-radius: 25px;
    border-color: transparent;
}

.search-bar button {
    padding: 12px;
    background-color: rgb(234, 239, 244);
    border: none;
    font-size: 11px;
}

.search-bar ul li a {
    font-size: 11px;
    padding: 6px 16px;
}

.search-bar ul li a:hover {
    background: rgb(206, 229, 237);
}

.search-bar ul li a.selected {
    background-color: rgba(10, 126, 164, 0.08);
}

.input-group.search-bar:hover {
    border: 1px solid rgb(10, 126, 164);
    border-radius: 25px;
}

.dropdown-toggle {
    border-radius: 30px 0 0 30px !important;
}

.search-input {
    border-radius: 0 30px 30px 0 !important;
    border-left: 0;
}

.header-small-line {
    border-width: 0px thin 0px 0px;
    border-style: solid;
    height: 20px;
    border-color: rgb(223, 229, 239);
}

.btn-pill {
    border-radius: 10px;
    padding: 6px 16px;
    font-size: 12px;
}

.quick-btn {
    background-color: #007ea7;
}

.quick-btn:hover {
    background: #06769a;
}

.search-bar input {
    font-size: 11px;
}

.profile-dropdown-wrap h4 {
    font-size: 14px;
    margin-bottom: 0;
}

.profile-dropdown-wrap h6 {
    font-size: 11px;
    margin-bottom: 0;
}

.profile-dropdown-wrap p {
    font-size: 11px;
    margin-bottom: 0;
}

.profile-logout-btn {
    border: 1px solid rgba(10, 126, 164, 0.5);
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 11px;
    color: #0a7ea4;
    font-weight: 600;
}

.profile-logout-btn:hover {
    background-color: rgb(10, 126, 164);
    color: white;
}

.orders-filter-wrap button {
    font-size: 11px;
    border-color: rgba(124, 143, 172, 0.3);
}

.orders-filter-wrap button.btn-primary {
    background-color: rgb(10, 126, 164);
}

.orders-table #dateRange {
    font-size: 11px;
    padding: 9px;
}

.orders-table #searchInput {
    font-size: 11px;
    padding: 9px;
}

.orders-table #paymentTypeFilter {
    font-size: 11px;
    padding: 9px;
}

.orders-table #statusFilter {
    font-size: 11px;
    padding: 9px;
}

.whatsapp-text {
    font-size: 11px;
}

.whatsapp-text button {
    font-size: 11px;
}

#addAddressModal input {
    font-size: 11px;
}

#addAddressModal button.address-cancel-btn {
    background: rgb(206, 229, 237);
    font-size: 11px;
    border-radius: 10px;
    color: #0a7ea4;
}

#addAddressModal button#saveAddressBtn {
    background: #0a7ea4;
    font-size: 11px;
    border-radius: 10px;
    color: #fff;
}

.add-address-title {
    font-size: 15px;
}

.icon-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 50%;
    background-color: #007ea7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-btn {
    background: #3b3f5c;
}

.ticket-btn:hover {
    background: rgb(41, 44, 64);
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
}

.progress-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: conic-gradient(#007ea7 25%, #e9ecef 0 100%);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.334rem;
    color: rgb(6, 118, 154);
}

.add-order-wrap {
    background-color: rgb(255, 255, 255);
    color: rgb(42, 53, 71);
    background-image: none;
    position: relative;
    padding-left: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 16px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(229, 234, 239);
    border-image: initial;
    gap: 0.5rem;
}

.add-order-wrap a {
    color: rgba(0, 0, 0, 0.54);
}

.add-order-wrap h5 {
    font-size: 15px;
    margin-bottom: 0;
}

.dismiss-btn {
    background: rgb(206, 229, 237);
    border: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #0a7ea4;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 10px;
}

.dismiss-btn:hover {
    background-color: rgb(10, 126, 164);
    color: white;
}

.save-btn {
    background: rgb(10, 126, 164);
    border: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 10px;
}

.save-btn:hover {
    background-color: rgb(10, 126, 164);
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
}

.save-assign-btn {
    background: #3b3f5c;
    border: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 10px;
}

.save-assign-btn:hover {
    background: rgb(41, 44, 64);
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
    color: #fff;
}

.do-inter-tab-wrap {
    background-color: rgb(255, 255, 255);
    color: rgb(42, 53, 71);
    display: flex;
    align-items: center;
    overflow-x: auto;
    margin-bottom: 1rem;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgb(229, 234, 239);
    border-image: initial;
    padding: 4px 3px;
    height: fit-content;
    gap: 4px;
    border-radius: 10px;
    width: fit-content;
}

.do-inter-tab-wrap .nav-item {
    font-size: 10px;
    padding: 1px 2px;
    color: rgb(42, 53, 71);
}

.do-inter-tab-wrap .nav-item a {
    color: rgb(42, 53, 71);
    padding: 6px 14px;
    font-weight: 600;
    border: none;
}

.do-inter-tab-wrap .nav-link.active {
    background: #0a7ea4;
    color: #fff;
    font-size: 10px;
    border-radius: 10px;
}

.tools-tab-wrap {
    background-color: rgb(234, 239, 244);
    color: rgb(42, 53, 71);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgb(229, 234, 239);
    border-image: initial;
    padding: 0;
    height: fit-content;
    gap: 4px;
    border-radius: 10px;
}

.tools-tab-wrap .nav-item {
    font-size: 11px;
    color: rgb(42, 53, 71);
    width: 100%;
    flex: 1 1 0%;
}

.tools-content .tab-content {
    max-width: 600px;
    margin: auto;
}

.tools-tab-wrap .nav-item a {
    color: rgb(42, 53, 71);
    padding: 14px 16px;
    font-weight: 400;
    font-size: 11px;
    border: none;
    width: 100%;
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tools-tab-wrap .nav-link.active {
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0;
    color: rgb(10, 126, 164);
    border-bottom: 2px solid rgb(10, 126, 164);
}

.tools-content .tab-pane input,
.tools-content .tab-pane .form-select {
    font-size: 11px;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: none;
    /* border: 1px solid transparent; */
}

.tools-content .tab-pane .input-group {
    overflow: hidden;
}

.tools-content .tab-pane .input-group:hover,
.tools-content .tab-pane .form-select:hover,
.tools-content .tab-pane input:hover {
    border: 1px solid rgb(10, 126, 164);
}

.tools-content .tab-pane input.form-control:focus {
    border: 2px solid rgb(10, 126, 164);
}

.tools-content .tab-pane .input-after-text {
    font-size: 11px;
    background-color: rgb(234, 239, 244);
}

.tools-content .tab-pane .bulk-btn {
    font-size: 12px;
    font-weight: 500;
    background: #0a7ea4;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
}

.tools-content .tab-pane .bulk-btn:hover {
    background: #06769a;
    color: #fff;
}

.tools-content .tab-pane .card {
    border: 1px solid rgb(229, 234, 239);
}

.card-header-custom {
    background-color: #0084a9;
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.tab-content-wrapper {
    display: flex;
    align-items: flex-start;
}

.tab-content {
    flex: 4;
}

.profile-content #profileTab {
    padding: 0;
    background-color: rgb(234, 239, 244);
    border-radius: 10px;
    border: none;
    color: rgb(42, 53, 71);
    font-size: 11px;
    overflow: hidden;
}

.profile-content #profileTab .nav-link {
    color: rgb(42, 53, 71);
    padding: 14px 16px;
}

.profile-content #profileTab .nav-link.active {
    background: none;
    border: none;
    border-bottom: 3.5px solid rgb(10, 126, 164);
    color: rgb(10, 126, 164);
    font-weight: 600;
}

.profile-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.card-profile-header img {
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.profile-circle-wrapper {
    margin-top: -80px;
}

.profilePicDiv {
    background-image: linear-gradient(#50b2fc, #f44c66);
    border-radius: 50% !important;
    width: 110px;
    height: 110px;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.profile-circle-wrapper h4 {
    font-size: 15px;
    font-weight: 600;
}

.profile-circle-wrapper p {
    font-size: 13px;
    line-height: 1.2rem;
    color: rgb(42, 53, 71);
    font-weight: 400;
}

.profile-circle-wrapper h4 {
    font-size: 15px;
    font-weight: 600;
}

.profile-circle-wrapper p {
    font-size: 12px;
}

.profile-status-wrapper h4 {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-circle-wrapper-inner {
    position: relative;
}

.profile-circle-wrapper-inner button {
    position: absolute;
    right: -35px;
    bottom: 15px;
    background: none;
    border: none;
    color: rgb(10, 126, 164);
}

.percent-badge-wrapper {
    position: relative;
}

.percent-badge {
    color: rgb(10, 126, 164);
    background-color: rgb(234, 239, 244);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    transform: rotate(-45deg);
    display: inline-flex;
    border: 2px solid;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    align-items: center;
    justify-content: center;
}

.percent-badge-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
}

.profile-completion-card {
    /* max-width: 1000px;
    margin: auto; */
    padding-top: 70px;
}

.single-step {
    position: relative;
    width: 100%;
}

.single-step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -20px;
    width: 50%;
    height: 1.4px;
    border: 1px solid rgb(229, 234, 239);
    z-index: 1;
}

.single-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: -20px;
    width: 50%;
    height: 1.4px;
    /* background-color: #0a7ea4; */
    border: 1px solid rgb(229, 234, 239);
    z-index: 1;
}

.single-step.active::after {
    border-color: #0a7ea4;
}

.single-step.active-before::before {
    border-color: #0a7ea4;
}

.single-step h5 {
    font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
    color: #2a3547;
}

.proceed-btn {
    background: #0a7ea4;
    color: #fff;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 11px;
}

.proceed-btn:hover {
    background: #06769a;
    color: #fff;
    font-size: 11px;
}

.proceed-btn {
    background: #0a7ea4;
    color: #fff;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 11px;
}

.single-step .badge {
    width: 20px;
    height: 20px;
    line-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.38);
    font-size: 9px;
    font-weight: 400;
}

.single-step .complete-svg {
    font-size: 23px;
    width: 23px;
    fill: rgb(10, 126, 164);
}

.single-step .current-step {
    background: rgb(10, 126, 164);
}

.change-password-tab {
    max-width: 500px;
    margin: auto;
}

.change-password-tab .card {
    border: 1px solid rgb(229, 234, 239);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
}

.change-password-tab .card-header {
    background: #fff;
    border-color: rgb(229, 234, 239);
}

.change-password-tab .card h4 {
    font-size: 14px;
    margin-left: 10px;
}

.change-password-tab input {
    font-size: 11px;
}

.pass-char {
    font-size: 9px;
}

.logout-from-text-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-from-text-wrap input {
    font-size: 16px;
}

.form-check-label.logout-from-text {
    font-size: 11px;
}

.save-password-btn {
    background: #0a7ea4;
    font-size: 11px;
    color: #fff;
    padding: 6px 16px;
    border-radius: 10px;
}

.save-password-btn:hover {
    background: #06769a;
    color: #fff;
}

.info-box {
    position: sticky;
    top: 4.5rem;
    background-color: rgb(255, 255, 255);
    color: rgb(42, 53, 71);
    border: 1px solid rgb(229, 234, 239);
    padding: 16px;
    border-radius: 10px;
    font-size: 14px;
    flex: 1;
}

.form-check-label {
    font-size: 14px;
}

.dropdown>.btn:hover {
    background: #007ea7;
    color: #fff;
}

.welcome-tag {
    background: #fee2e2;
    font-size: 11px;
    color: #b91c1c;
    border-radius: 10px;
    padding: 10px 13px;
}

.welcome-tag p {
    margin-bottom: 0;
}

.page-content {
    height: 100%;
    min-height: calc(-70px + 100svh);
    padding: 10px;
}

.page-content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px;
    font-size: 11px;
    background: #fff;
}

.page-content-footer p {
    margin-bottom: 0;
}

.page-content-footer a {
    text-decoration: none;
    font-weight: 600;
}

.page-content-footer>div {
    display: flex;
    gap: 10px;
}

.recharge-btn button {
    font-size: 11px;
}

.recharge-btn button:first-child {
    border: 1px solid #007ea7;
}

.recharge-btn button:last-child {
    background: #007ea7;
    color: #fff;
    font-weight: 600;
}

.add-order-accordion .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.add-order-accordion .accordion-header .accordion-button {
    background: rgb(10, 126, 164);
    color: #fff;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
}

.add-order-accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.add-order-accordion .accordion-item:last-of-type .accordion-button {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.add-order-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
}

.add-order-accordion .accordion-item input.form-control {
    font-size: 11px;
    padding: 9px 12px;
    box-shadow: none;
    /* border: 2px solid; */
}

.add-order-accordion .accordion-item input.form-control:hover {
    border: 1px solid rgb(10, 126, 164);
}

.add-order-accordion .accordion-item input.form-control:focus {
    border: 2px solid rgb(10, 126, 164);
}

.add-order-accordion .accordion-item input.form-control {
    font-size: 11px;
    padding: 9px 12px;
    box-shadow: none;
}

.add-order-accordion .country-code-text {
    font-size: 11px;
    background-color: rgb(234, 239, 244);
}

.add-order-accordion .address-text {
    font-size: 9px;
}

.add-order-accordion .address-text span {
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
}

.add-order-accordion .buyer-checkbox label {
    font-size: 11px;
    margin-left: 5px;
    cursor: pointer;
}

.add-order-accordion .buyer-checkbox input {
    border-radius: 3px;
    width: 19px;
    height: 19px;
    border: none;
    box-shadow: rgb(176, 188, 205) 0px 0px 0px 1px inset;
    cursor: pointer;
}

.add-order-accordion .buyer-checkbox input:checked {
    border-radius: 3px;
    width: 19px;
    height: 19px;
    background-color: rgb(10, 126, 164);
    box-shadow: none;
}

.add-order-accordion .weight-alert {
    padding: 8px 9px;
    border: 1px solid rgb(17, 204, 170);
    border-radius: 10px;
    background-color: rgba(230, 255, 250, 0.4);
    color: rgb(2, 179, 169);
    font-weight: 600;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.add-order-accordion .form-select {
    font-size: 11px;
    padding: 12px 15px;
}

.add-order-accordion .input-after-text {
    font-size: 11px;
    background-color: rgb(234, 239, 244);
}

.add-order-accordion .total-volume-wrap {
    display: flex;
    font-size: 9px;
    font-weight: 400;
    gap: 10px;
    background-color: rgb(229, 234, 239);
    color: rgb(42, 53, 71);
    align-items: center;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    padding: 12px 16px;
}

.add-order-accordion .add-address-btn {
    background: #0a7ea4;
    color: #fff;
    font-size: 11px;
    padding: 10px 14px;
    border-radius: 10px;
}

.add-order-accordion .add-address-btn:hover {
    background: #06769a;
    color: #fff;
}

.add-order-accordion .or-text {
    font-size: 13px;
    margin: 6px 0;
}

.address-box {
    padding: 16px;
    border: 1px solid rgb(10, 126, 164);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    position: relative;
    font-size: 11px;
}

/* Product Box Styles */
.product-box {
    border: 1px dashed rgb(124, 143, 172);
    border-radius: 8px;
    padding: 24px 16px;
    background-color: #f8f9fa;
    position: relative;
}

.product-box:hover {
    border-color: #0a7ea4;
    box-shadow: 0 2px 8px rgba(10, 126, 164, 0.1);
}

.delete-product-btn {
    position: absolute;
    right: 0;
    top: -20px;
    transform: translate(-50%, 5px);
    background: rgb(250, 137, 107);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: #fff;
}

.delete-product-btn:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Address Box Styles */
.address-box {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-box:hover {
    border-color: #0a7ea4;
    background-color: #e3f2fd;
}

.add-address-btn {
    background-color: #0a7ea4;
    color: white;
    border: 1px solid #0a7ea4;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.add-address-btn:hover {
    background-color: #086a8a;
    border-color: #086a8a;
    color: white;
}

.or-text {
    font-size: 14px;
    font-weight: 500;
}

.add-product-btn {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 5px);
    background: rgb(10, 126, 164);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: #fff;
}

.add-product-btn:hover {
    background-color: #086a8a;
    color: white;
    border-color: #086a8a;
}

.product-count {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translate(-50%, 5px);
    background: rgb(10, 126, 164);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: #fff;
}

.radio-input label {
    font-size: 11px;
}

.grand-total-wrap {
    font-size: 14px;
    font-weight: 600;
}

.add-category-link {
    font-size: 11px;
}

.add-category-link span {
    color: #9ca3af;
}

.billing-details-uncheck-wrap hr {
    border-width: 0px 0px thin;
    border-style: solid;
    border-color: rgb(229, 234, 239);
    color: rgb(229, 234, 239);
    opacity: 1;
}

/* Dashboard Analytics Styles */
.analytics-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.analytics-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.orders-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.revenue-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.shipments-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.wallet-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Date Range Header */

.date-range-display {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.date-range-display:hover {
    border-color: #0a7ea4;
    box-shadow: 0 2px 4px rgba(10, 126, 164, 0.1);
}

.date-range-display span {
    background: rgb(234, 239, 244);
}

.date-range-display .input-group-text {
    padding: 10px 12px;
}

.date-range-display .input-group-text svg {
    stroke: #646262;
}

.date-range-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 12px 7px;
    font-size: 11px;
    color: #495057;
    width: 180px;
    cursor: pointer;
}

.date-range-input::placeholder {
    color: #6c757d;
}

.date-picker-icon {
    color: #6c757d;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.date-range-display:hover .date-picker-icon {
    transform: rotate(180deg);
}

/* Custom Date Range Picker Styles */
.daterangepicker {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Archivo", sans-serif;
}

.daterangepicker .ranges li {
    border-radius: 8px;
    margin: 2px 0;
    font-size: 12px;
    font-weight: 500;
}

.daterangepicker .ranges li:hover {
    background-color: #e3f2fd;
    color: #0a7ea4;
}

.daterangepicker .ranges li.active {
    background-color: #0a7ea4;
    color: white;
}

.daterangepicker .drp-buttons {
    border-top: 1px solid #e9ecef;
    padding: 10px;
}

.daterangepicker .drp-selected {
    font-size: 12px;
    color: #6c757d;
}

.daterangepicker .btn {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
}

.daterangepicker .btn-primary {
    background-color: #0a7ea4;
    border-color: #0a7ea4;
}

.daterangepicker .btn-primary:hover {
    background-color: #086a8a;
    border-color: #086a8a;
}

.daterangepicker .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.daterangepicker .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.daterangepicker .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border-color: #0a7ea4;
}

.daterangepicker .calendar-table .next:hover span,
.daterangepicker .calendar-table .prev:hover span {
    background-color: #0a7ea4;
}

.daterangepicker .calendar-table .table-condensed td,
.daterangepicker .calendar-table .table-condensed th {
    border-radius: 6px;
    font-size: 12px;
}

.daterangepicker .calendar-table .table-condensed td.available:hover {
    background-color: #e3f2fd;
    color: #0a7ea4;
}

.daterangepicker .calendar-table .table-condensed td.active {
    background-color: #0a7ea4;
    color: white;
}

.daterangepicker .calendar-table .table-condensed td.in-range {
    background-color: #e3f2fd;
    color: #0a7ea4;
}

/* Order Status Cards */
.order-status-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.order-status-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.order-status-card .card-body {
    padding: 20px 15px;
}

.status-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.status-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.status-title {
    font-size: 13px;
    line-height: 1.2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.status-number {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Order Status Card Background Colors */
.new-orders {
    background-color: rgb(235, 243, 254);
    border: 0.5px solid rgb(83, 155, 255);
    color: rgb(83, 155, 255);
}

.courier-assigned {
    background-color: rgb(254, 245, 229);
    border: 0.5px solid rgb(255, 174, 31);
    color: rgb(255, 174, 31);
}

.scheduled {
    background-color: rgb(230, 255, 250);
    border: 0.5px solid rgb(17, 204, 170);
    color: rgb(17, 204, 170);
}

.all-orders {
    background-color: rgb(235, 243, 254);
    border: 0.5px solid rgb(83, 155, 255);
    color: rgb(83, 155, 255);
}

.customer-returns {
    background-color: rgb(253, 237, 232);
    border: 0.5px solid rgb(250, 137, 107);
    color: rgb(250, 137, 107);
}

.rto {
    background-color: rgb(250, 251, 239);
    border: 0.5px solid rgb(204, 218, 78);
    color: rgb(204, 218, 78);
}

/* No Data Message */
.no-data-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #6c757d;
    font-size: 14px;
}

/* Shipment Legend */
.shipment-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #495057;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-color.delivered {
    background-color: #007bff;
}

.legend-color.rto {
    background-color: #fd7e14;
}

.legend-color.ndr {
    background-color: #ffc107;
}

/* Recent Orders Table */
.recent-orders-card {
    border: none;
    box-shadow: rgb(145 158 171 / 30%) 0px 0px 2px 0px,
        rgb(145 158 171 / 12%) 0px 12px 24px -4px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-orders-card .card-header {
    background: #fff;
    border-bottom: 1px solid rgb(229, 234, 239);
    padding: 13px;
}

.recent-orders-card .card-header h6 {
    font-size: 14px;
}

.recent-orders-card .card-body {
    padding: 13px;
}

.recent-orders-card .card-body .table thead tr th {
    color: rgb(42, 53, 71);
    line-height: 1.5rem;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid rgb(223, 229, 239);
    background-color: rgb(234, 239, 244);
    font-size: 14px;
    font-weight: 600;
    color: rgb(42, 53, 71);
    padding: 12px 8px;
}

.recent-orders-card .table tbody td {
    padding: 12px 8px;
    font-size: 11px;
    color: #212529;
    border-bottom: 1px solid #f8f9fa;
}

.recent-orders-card .table tbody td.order-id {
    color: #2563eb;
    font-weight: 600;
}

.recent-orders-card .table tbody td.td-green span {
    background: rgb(17, 204, 170);
    color: #fff;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 600;
    height: 20px;
    padding: 5px 12px;
}

.recent-orders-card .table tbody td.td-deepskyblue span {
    background: deepskyblue;
    color: #fff;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 600;
    height: 20px;
    padding: 5px 12px;
}

/* Card Header Styles */
.dashboard-card-row .card-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 13px;
}

.dashboard-card-row .card-header button {
    background: rgb(206, 229, 237);
    padding: 3px 14px;
    border: none;
    font-size: 10px;
    border-radius: 10px;
    color: #0a7ea4;
}

.dashboard-card-row .card-header .card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.dashboard-card-row .card {
    box-shadow: rgb(145 158 171 / 30%) 0px 0px 2px 0px,
        rgb(145 158 171 / 12%) 0px 12px 24px -4px;
    border: none;
    background-color: rgb(255, 255, 255);
    color: rgb(42, 53, 71);
    position: relative;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    padding: 0px;
    overflow: hidden;
}

.dashboard-card-row .card-body {
    height: 100%;
    min-height: 200px;
}

.orders-table th {
    font-size: 14px;
    padding: 12px 10px;
    background-color: rgb(234, 239, 244);
    color: rgb(42, 53, 71);
}

.orders-table td div {
    font-size: 11px;
}

.showing-text {
    font-size: 11px;
    padding: 16px 15px;
}

.sync-btn {
    font-size: 11px;
    font-weight: 500;
    background: #3b3f5c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
}

.sync-btn:hover {
    background: rgb(41, 44, 64);
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
}

.bulk-btn {
    font-size: 11px;
    font-weight: 500;
    background: #0a7ea4;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
}

.bulk-btn:hover {
    background: #06769a;
    color: #fff;
}

.add-order-btn {
    font-size: 11px;
    font-weight: 500;
    background: #0a7ea4;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    text-decoration: none;
}

.pagination-wrap {
    font-size: 11px;
}

.orders-top-bar ul {
    width: fit-content;
}

.forward-col li .nav-link {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2rem;
    background-color: transparent;
    color: rgb(42, 53, 71);
    border: none;
    border-bottom: 3px solid rgb(223, 229, 239);
    cursor: pointer;
    padding: 0;
    padding-bottom: 8px;
}

.forward-col li .nav-link.active {
    background: transparent;
    border: none;
    border-bottom: 3px solid rgb(10, 126, 164);
    color: rgb(10, 126, 164);
}

.forward-col ul {
    gap: 19px;
    border: none;
    padding: 0;
}

.dropdown-arrow button {
    background-color: rgb(10, 126, 164);
    box-shadow: none;
    width: 30px;
    height: 30px;
    min-height: 30px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.dropdown-arrow button.show {
    background-color: rgb(10, 126, 164);
    color: #fff;
    border: none;
}

.dropdown-arrow ul {
    border: none;
    box-shadow: rgba(145, 158, 171, 0.3) 0px 0px 2px 0px,
        rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
}

.dropdown-arrow ul li a {
    font-size: 11px;
    font-weight: 500;
    color: #2a3547;
    padding: 8px 17px;
}

.dropdown-arrow ul li a:hover {
    background-color: rgb(206, 229, 237);
}

.orders-card-heder-icons button:not(:last-child) {
    background: #dfe5ef;
    color: rgb(42, 53, 71);
    box-shadow: none;
    font-weight: 500;
    min-width: 50px;
    min-height: 36px;
    outline: 0px;
    margin: 0px;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.orders-card-heder-icons button:not(:last-child):active {
    border: none;
}

.more-filter-col>button {
    background: #dfe5ef;
    font-size: 11px;
    font-weight: 500;
    min-width: 50px;
    min-height: 36px;
    outline: 0px;
    margin: 0px;
    text-decoration: none;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.more-filter-col>button::after {
    content: "";
    position: absolute;
    z-index: 1;
    background-color: rgb(250, 137, 107) !important;
    color: rgb(255, 255, 255);
    height: 8px;
    width: 8px;
    right: -5px;
    top: -5px;
    border-radius: 50%;
}

.more-filter-col>button:hover {
    background: #f5f5f5;
    box-shadow: rgba(0, 0, 0, 0.31) 0px 0px 1px 0px,
        rgba(0, 0, 0, 0.25) 0px 3px 4px -2px;
}

.orders-table .table-responsive {
    overflow: visible;
}

.orders-table .table-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.orders-table .table-action>button {
    font-size: 11px;
    background: #0a7ea4;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-status-card .card-body {
        padding: 15px 10px;
    }

    .status-img {
        width: 30px;
        height: 30px;
    }

    .status-title {
        font-size: 11px;
    }

    .status-number {
        font-size: 20px;
    }

    .shipment-legend {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.awb-popup {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 10px;
    width: calc(100% - 50px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

/* Popup header styles */
.popup-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Popup body styles */
.popup-body {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

/* Popup footer styles */
.popup-footer {
    margin-top: 10px;
    text-align: center;
}

.status-btn {
    display: inline-block;
    background-color: #d1f7d1;
    color: #28a745;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Optional animation for popup visibility */
.awb-popup.show {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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