@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Italianno&family=Lalezar&family=Lateef:wght@200;300;400;500;600;700;800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+NZ+Basic:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}


/* GLOBAL */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #7334D9;
    --secondary-color: #F3EDFC;
    --bg-light: #fff;
    --body-bg-light: #f8f9fa;
    --sidebar-width: 260px;
    --side-color: #000;
    --border-color: #dcdcdc;
}



body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

input[type="radio"] {
    accent-color: var(--primary-color);
}

/* SIDEBAR */
#sidebar-wrapper {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-color);
    z-index: 1060;
}

#sidebar-wrapper::-webkit-scrollbar {
    width: 6px;
}

#sidebar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#sidebar-wrapper .sidebar-heading {
    padding: 1.5rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid #dee2e6;
}

#sidebar-wrapper .nav-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 15px;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 14px;
    color: var(--side-color);
    border-radius: 9px;
    margin-top: 10px;
}

#sidebar-wrapper .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}




#sidebar-wrapper .sidebar-icon,
#sidebar-wrapper .sidebar-icon-b {
    color: var(--side-color);
    font-size: 18px;
    height: 21px;
    width: 21px;
}

#sidebar-wrapper .sidebar-icon1,
#sidebar-wrapper .sidebar-icon-b1 {
    color: var(--side-color);
    font-size: 18px;
    height: 20px;
    width: 20px;
    margin-right: 3px;
}

.sidebar-icon-b,
.sidebar-icon-b1 {
    display: none;
}

#sidebar-wrapper .nav-link:hover .sidebar-icon,
#sidebar-wrapper .nav-link.active .sidebar-icon,
#sidebar-wrapper .nav-link:hover .sidebar-icon1,
#sidebar-wrapper .nav-link.active .sidebar-icon1 {
    display: none;
}

#sidebar-wrapper .nav-link:hover .sidebar-icon-b,
#sidebar-wrapper .nav-link.active .sidebar-icon-b,
#sidebar-wrapper .nav-link:hover .sidebar-icon-b1,
#sidebar-wrapper .nav-link.active .sidebar-icon-b1 {
    display: block;
}

#sidebar-wrapper .nav-link.active .sidebar-icon,
#sidebar-wrapper .nav-link.active .sidebar-icon1 {
    filter: invert(1) brightness(2);
}



#sidebar-wrapper .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


#sidebar-wrapper .submenu-tree {
    margin-left: 20px;
    padding-left: 0;
    position: relative;
}

#sidebar-wrapper .submenu-tree .nav-link {
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
    background: transparent;
    color: var(--side-color);
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}



/* Dot */

.submenu-tree::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: #eef2f7;
}


#sidebar-wrapper .submenu-tree .nav-link::after {
    content: "";
    position: absolute;
    left: -4.5px;
    top: 53%;
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    border: 2px solid white;
}

#sidebar-wrapper .submenu-tree .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

#sidebar-wrapper .submenu-tree .nav-link.active::after {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(115, 52, 217, 0.2);
    /* Purple halo as in image */
    border: 2px solid white;
}

#sidebar-wrapper .submenu-tree .nav-link:hover {
    color: var(--primary-color) !important;
    background: transparent !important;
}

#sidebar-wrapper .submenu-tree .nav-link:hover::after {
    background: var(--primary-color);
}

.transition-transform {
    transition: transform 0.3s ease;
}

[aria-expanded="true"] .bi-chevron-right {
    transform: rotate(90deg);
}

.sidebar-header {
    flex: 0 0 70px;
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.sidebar-menu {
    flex: 1 1 auto;
    overflow-y: auto;
    width: 100%;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: #F3EDFC;
    border-radius: 0px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-menu .metismenu {
    padding: 15px;
}

/* NAVBAR */
.navbar {
    background-color: #ffffff !important;
    padding: 25px;

}

/* COMPONENTS */
.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    background: #fff;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bg-light-primary {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.bg-light-success {
    background-color: #e6fcf5;
    color: #0ca678;
}

.bg-light-warning {
    background-color: #fff9db;
    color: #f08c00;
}

.bg-light-danger {
    background-color: #fff5f5;
    color: #fa5252;
}

.quick-action-btn {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    font-weight: bold;
}

.x-small {
    font-size: 0.75rem;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-180 {
    transform: rotate(-90deg);
}

.no-caret::after {
    display: none !important;
}

.line-height-1 {
    line-height: 1.2;
}

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

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

.animate {
    animation: slideIn 0.3s ease;
}

/* AUTH */
.auth-body {
    background-color: var(--bg-light);
    background-image:
        radial-gradient(at 0% 0%, hsla(225, 100%, 95%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 100%, 90%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(225, 100%, 95%, 1) 0, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    font-weight: 600;
    font-size: 14px;
    color: #718096;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: #4361ee;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #4361ee;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(67, 97, 238, 0.2);
}

.submit-btn:hover {
    background: #3a56d4;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.3);
}

.hidden {
    display: none;
}

.animate-fade {
    animation: fadeIn 0.4s ease forwards;
}

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

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

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #212529Bf;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    border-color: var(--primary-color);
}

/* TABLE */
.table-hover-subtle tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* RESPONSIVE */
#page-content-wrapper {
    width: 100%;
    padding-left: var(--sidebar-width);
    transition: all 0.5s ease;
}



@media (max-width: 991px) {
    #sidebar-wrapper {
        margin-left: calc(-1 * var(--sidebar-width));

    }

    #sidebar-wrapper.show {
        margin-left: 0;
    }

    #page-content-wrapper {
        padding-left: 0;

    }
}

/* COMMON UTILITIES */
.bg-info-subtle {
    background-color: #e0f7fa;
}

.bg-warning-subtle {
    background-color: #fff3e0;
}

.bg-primary-subtle {
    background-color: #e7f1ff;
}

.bg-success-subtle {
    background-color: #e6fcf5;
}

.bg-danger-subtle {
    background-color: #fff5f5;
}

.transition-hover {
    transition: all 0.2s ease-in-out;
}

.transition-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* UTILITIES FOR INLINE STYLE REMOVAL */
.sidebar-wrapper-main {
    background: var(--bg-light);
    width: var(--sidebar-width);
    border-right: 1px solid var(--border-color);
}

.business-dropdown-btn {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0 !important;
}

.sidebar-brand-icon {
    width: 38px;
    height: 38px;
}

.no-pointer-events {
    pointer-events: none;
}

.x-small-text {
    font-size: 0.7rem;
}

.icon-fixed-width {
    width: 20px;
}

.avatar-40 {
    width: 40px;
    height: 40px;
}

.avatar-200 {
    max-height: 200px;
}

.avatar-80 {
    width: 80px;
    height: 80px;
}

.avatar-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.font-size-xs {
    font-size: 0.7rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.sticky-top-header {
    top: 2rem;
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-secondary-light {
    background-color: rgba(108, 117, 125, 0.1) !important;
}

.bg-white-light {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.italic {
    font-style: italic;
}

.max-w-200 {
    max-width: 200px;
}

.nav-item .nav-link .dropdowns {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sidebar-footer {
    flex: 0 0 auto;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}



.signout-icons {
    font-size: 18px;
    height: 21px;
    width: 21px;
}



.logo-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    overflow: hidden;
}

.sidebar-logo {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

.container-wrapper {
    padding: 25px;
    background-color: var(--body-bg-light);
    min-height: calc(100vh - 130px); /* Adjust based on header and footer height */
    overflow-x: hidden;
    flex: 1; /* This will make it grow to fill space and push footer down */
}

.footer {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    padding: 15px 0;
}

/* ZOHO STYLE DASHBOARD */
.zoho-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.zoho-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4B5563;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ls-wide {
    letter-spacing: 0.05em;
}

/* Modern Dashboard Cards */
.modern-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.card-header-modern {
    padding: 1.5rem 1.5rem 0.5rem;
    background: transparent;
    border: none;
}

.card-body-modern {
    padding: 1rem 1.5rem 1.5rem;
}

.trend-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trend-up {
    background: #dcfce7 !important;
    color: #16a34a !important;
}

.trend-down {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.chart-container-modern {
    position: relative;
    width: 100%;
}





/* GLOBAL DESIGN SYSTEM (Zoho Style) */
.app-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.app-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.app-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.app-btn-primary {
    background-color: #0060df;
    color: #ffffff !important;
}

.app-btn-primary:hover {
    background-color: #0050bc;
}

.app-btn-secondary {
    background-color: #f1f5f9;
    color: #475569 !important;
    border-color: #e2e8f0;
}

.app-btn-secondary:hover {
    background-color: #e2e8f0;
}

.app-btn-danger {
    background-color: #ef4444;
    color: #ffffff !important;
}

.app-btn-danger:hover {
    background-color: #dc2626;
}

.app-btn-icon {
    padding: 8px;
    width: 36px;
    height: 36px;
    justify-content: center;
    background-color: #ffffff;
    border-color: #e2e8f0;
    color: #64748b !important;
}

.app-btn-icon:hover {
    background-color: #f8fafc;
    color: #0060df !important;
}

.app-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.app-table thead th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border-bottom: 2px solid #f1f5f9;
}

.app-table tbody td {
    padding: 14px 16px;
    color: #334155;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.app-table tbody tr:hover {
    background-color: #f1f5f9;
}

.app-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.app-badge-success {
    background-color: #dcfce7;
    color: #16a34a;
}

.app-badge-danger {
    background-color: #fee2e2;
    color: #dc2626;
}

.app-badge-warning {
    background-color: #fef9c3;
    color: #ca8a04;
}

.custom-legend li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
}

.legend-info {
    display: flex;
    align-items: center;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.legend-label {
    font-weight: 500;
}

.legend-value {
    font-weight: 600;
    color: #1e293b;
}

/* Typography Refresh */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1e293b;
}

.navbar {
    height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.sign-out-link {
    width: 100%;
}

.sign-out-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 0px !important;
}

.nav-titles {
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
}


/* ========================================================= */

.dashboard-main-card-blue {
    padding: 20px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(rgba(115, 52, 217, 0.9), rgba(115, 52, 217, 0.9)),
        url('../assets/images/Dashboard/wind.gif');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.01);
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.dashboard-card-icon-blue {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: white;
    padding: 13px;
}

.dashboard-stat-info-blue {
    margin-top: 50px;
    text-align: right;
}

.dashboard-stat-info-blue p {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: "Poppins", sans-serif;
}

.dashboard-stat-info-blue h2 {
    font-size: 30px;
    margin: 0;
    color: #fff;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif;

}

/* ===== */

.dashboard-main-card {
    padding: 20px;
    overflow: hidden;
    position: relative;
    background: var(--secondary-color);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.01);
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.dashboard-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--primary-color);
    padding: 13px;
    position: static;
    z-index: 1;
}

.dashboard-card-vec {
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0px;
    opacity: 0.1;
}

.dashboard-stat-info {
    margin-top: 50px;
    text-align: right;
    position: static;
    z-index: 1;
}

.dashboard-stat-info p {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: "Poppins", sans-serif;
}

.dashboard-stat-info h2 {
    font-size: 30px;
    margin: 0;
    color: #000;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif;

}


.dashboard-chart-div {
    padding: 0px;
    overflow: hidden;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.01);
}

.dashboard-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f2;
}

.dashboard-chart-header h6 {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: "Poppins", sans-serif;
}

.chart-value {
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 5px;
    font-weight: bold;
}

.chart-value1 {
    font-size: 16px;
    color: #10B981;
    margin-left: 5px;
    font-weight: bold;
}

.dashboard-chart-body {
    padding: 20px;
}

.dashboard-chart-filter {
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 6px 32px 6px 13px;
    font-size: 14px;
    background-color: #f8fafc;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.25rem;
}

.view-all-table-btn {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-decoration: underline !important;
}

.table-responsive table th {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px;
}

.table-responsive table th,
.table-responsive table td {
    border-color: #f2f2f2;
}

.table-responsive table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-button-card-title {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.1px;
    font-family: "Poppins", sans-serif;
    padding: 10px 0px 10px 0px;
}

.dashboard-button-card-link {
    color: #7334D9;
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
}


.Dashboard-left-box {
    background-color: white;
    height: auto;
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.Dashboard-left-box h4 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600 !important;
}

.Dashboard-left-box p {
    color: #000000;
    margin-bottom: 0;
    padding: 5px 0px;
}

.Dashboard-left-box a {
    color: #7334D9;
    font-size: 18px;
    font-weight: 600;
}

.left-box-button {
    background: linear-gradient(90.29deg, #9E6AF6 0.25%, #6A34C3 100.78%);
    border: none;
    color: #ffff;
    padding: 8px 14px;
    font-size: 15px;
    border-radius: 100px;
    margin-top: 10px;
}

.btn-primary {
    background: linear-gradient(90.29deg, #9E6AF6 0.25%, #6A34C3 100.78%);
    border: none !important;
    padding: 7px 10px;
}

.btn-light {
    background: white;
    border: 1px solid #dcdcdc;
    border: none !important;
    padding: 7px 10px;
}

.table-page {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 5px Rgba(0, 0, 0, 0.05);
}

.table-header {
    padding: 25px;
}

.action-btn {
    border: 0px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    background-color: var(--secondary-color);
    border-radius: 5px;
    font-size: 12px;
}

/* ================================================================ */

.inner-pages-div {
    padding: 0px;
    overflow: hidden;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.01);
}

.inner-pages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f2;
}

.inner-pages-header h6 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: "Poppins", sans-serif;
}

.inner-pages-body {
    padding: 20px;
}


.upload-box {
    border: 2px dashed #d6d6d6;
    border-radius: 12px;
    background: #f8f9fb;
    min-height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background: #f1f6ff;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 32px;
    color: #8c8c8c;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0px;
}

.browse-text {
    color: #0d6efd;
    font-weight: 500;
    margin-top: 10px;
}

.preview-img {
    max-height: 120px;
}

.produ-img-main-div {
    position: relative;
}

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.budgets-service {
    padding: 5px 10px;
    font-size: 12px;
    text-transform: capitalize;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.Link-tabs-inner {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline !important;
}

.solution-div {
    padding-bottom: 20px;
}

.solution-title {
    font-size: 16px;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 10px;

}

.full-solution-div {
    border-top: 1px solid #dcdcdc;
}

.full-solution-title {
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.btn-secs {
    background: var(--secondary-color);
    color: black;
    border: none !important;
    padding: 7px 15px;
}

.btn-secs:hover {
    background: var(--secondary-color);
    color: black;
    border: none !important;
    padding: 7px 15px;
}


.new-search-width {
    max-width: 350px;
}

.dashboard-button-new-link {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
}