﻿/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');*/

.manrope-400 {
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/* =====================================================
   Anoop Shakya: ver.2
   Start Date: 6 Jan, 2026
   ===================================================== */

/* =====================
   ROOT VARIABLES
   ===================== */
:root {
    --fontfamily-manrope: "Manrope", system-ui, -apple-system, sans-serif;
    /* Brand */
    --color-primary: #0F4386;
    --color-primary-hover: #0A366F;
    /* Background */
    --bg-app: #EAECF4;
    --bg-surface: #ffffff;
    --bg-sidebar: #242F57;
    --bg-header: #ffffff;
    --bg-navitem-active: #EFF4FA;
    /* Text */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #cbd5f5;
    --text-inverse: #ffffff;
    /* Border */
    --border-color: #e5e7eb;
    /* Status */
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #FF5328;
    --info: #0284c7;
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    /* Shadows */
    --shadow-soft: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-card: 0 6px 18px rgba(0,0,0,0.08);
    /* Transition */
    --transition: 0.25s ease;
    --sidebar-width: 200px;
    /*bootstrap _root*/
    --bs-primary: #0F4386;
    /* end bootstrap _root*/
}

/* =====================
   DARK MODE
   ===================== */
[data-theme="dark"] {
    --bg-app: #020617;
    --bg-surface: #020617;
    /*--bg-sidebar: #020617;*/
    --bg-header: #020617;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-color: #1e293b;
    --shadow-soft: none;
    --shadow-card: none;
}

/* =====================
   BASE
   ===================== */
body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif !important;
    background: var(--bg-app);
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #cbd5e1 #F8F8F8; /* thumb color track color */
}
a {
    text-decoration: none;
    color: inherit;
}
label, input, input textarea {
    font-family: "Manrope", sans-serif !important;
    font-size: 14px;
}

input[disabled],
.e-float-input input[disabled],
.e-float-input input.e-disabled,
.e-float-input.e-control-wrapper input[disabled],
.e-float-input.e-control-wrapper input.e-disabled {
    cursor: text;
}
/* =====================
   SCROLLBAR (DESKTOP)
   ===================== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* For Chrome, Safari, Edge, and Opera */
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
body::-webkit-scrollbar-track {
    background: #F8F8F8;
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb {
    background-color: #80CAFF;
    border-radius: 4px;
}

    body::-webkit-scrollbar-thumb:hover {
        background-color: #80CAFF;
    }
/*login page*/
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #FFA342, #C1337B, #3B8BAE, #434F83);
    background-size: 400% 400%;
    animation: gradient 18s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.main-container {
    min-height: 100vh;
}

.content-box {
    background-color: rgba(256,256,256,1);
    border-radius: 40px;
    box-shadow: 0px 10px 58px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
}

    .content-box .e-control {
        letter-spacing: 1px;
    }

.left-side {
    padding: 3rem;
}

.logo {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 230px;
    height: 100px;
    background-color: #fff;
    margin-top: -50px;
    padding: 0 20px;
    border-radius: 60px;
    box-shadow: 0 16px 180px #efefef;
}

/* =========================
   Global
========================= */
.app-shell {
    display: flex;
    min-height: 100vh;
}

.main-area {
    /*    width: calc(100vw - var(--sidebar-width));*/
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
/*    position: absolute;
    right: 0;*/
/*    margin-left: var(--sidebar-width);*/
    transition: width 0.2s ease, margin-left 0.2s ease;
}
/* Main container reacts */
.main-area.sidebar-expanded {
    margin-left: 200px;
}

.main-area.sidebar-collapsed {
    margin-left: 70px;
}

.page-content {
    flex: 1;
    padding: 10px 2px;
    overflow-y: auto;
}
h2 {
    font-size: 1.4rem;
    color: #484848;
    padding-bottom: 0px;
    font-weight: 600;
}
h5 {
    font-size: 1rem;
    color: #484848;
    padding-bottom: 4px;
    font-weight: 400;
}
.e-btn-md{height:40px;}
.e-btn, .e-css.e-btn,
.e-footer-content .e-btn,
.e-primary,
.e-lib e-primary,
.e-btn.e-primary,
.e-css.e-btn.e-primary,
.e-footer-content .e-primary {
    font-weight: 500;
    line-height: 1.6rem;
    font-family: "Manrope", sans-serif !important;
    transition: all 0.3s;
    border-color: var(--border-color);
    align-items: center;
    display: inline-flex;
}
.e-primary {
    background: linear-gradient(155deg, #2F71A0, #1C498C) !important;
    height: 36px;
}

    .e-lib e-primary:hover, .e-btn.e-primary:hover, .e-css.e-btn.e-primary:hover {
        background: linear-gradient(155deg, #1C498C, #1C498C);
        border-color: var(--color-primary-hover);
    }
.e-btn-light {
    background: #E4ECF7;
    color: var(--color-primary);
    height: 36px;
}
    .e-btn-light:hover {
        background: #D0E1F4;
        color: var(--color-primary-hover);
        border-color: #E4ECF7;
    }

    .e-btn-light:disabled, .e-btn-light.e-disabled {
        background: rgba(108, 117, 125, .65);
        border-color: rgba(108, 117, 125, .65);
        box-shadow: none;
        color: hsla(0, 0%, 100%, .65);
    }

.e-btn-md {
    height: 40px;
}
    .small-help {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 400;
    }

/* =====================
   APP LAYOUT
   ===================== */
.app-layout {
    display: flex;
    min-height: 100vh;
}

/* =====================
   SIDEBAR
   ===================== */

.sidebar {
    flex: 0 0 var(--sidebar-width);
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-surface);
    color: var(--text-main);
    border-right: 1px solid #ccc;
    overflow: hidden;
    position: fixed;
    z-index: 2;
    transition: width 0.25s ease;
}

    .sidebar.expanded {
        --sidebar-width: 200px;
    }
    .sidebar.collapsed {
        --sidebar-width: 70px;
    }

.sidebar-header .SS-logo{
    width:150px;
}
.sidebar.collapsed .sidebar-header .SS-logo span {
    width: 45px;
    overflow:hidden;
    display:block;
    margin-right:15px;
}
.sidebar.collapsed:hover .sidebar-header .SS-logo span {
    width: 150px;
    overflow: inherit;
    display: block;
    margin-right: 15px;
}
.sidebar-header img {
    width: 120px;
    padding-left: 5px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

/*.sidebar-header {
    padding: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}*/

/* Header */
.sidebar-header {
    height: 64px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 2px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    color: var(--color-primary);
}
.sidebar-nav .nav-link i {
    color: var(--color-primary);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--bg-navitem-active);
    color: var(--color-primary);
}
.sidebar-toggle {
    cursor: pointer;
    font-size: 18px;
    color: var(--color-primary);
    margin-right:-10px;
    z-index:2;
    
}

/* Nav */
.sidebar-nav {
    padding: 8px 8px;
    height: calc(100vh - 104px);
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Icons */
.sidebar-nav i {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

/* Text */
.menu-text {
    white-space: nowrap;
}

/* Collapsed behavior */
.sidebar.collapsed .menu-text {
    display: none;
}

/* Hover expand */
.sidebar.collapsed:hover {
    --sidebar-width: 200px;
}

    /* Show text on hover */
    .sidebar.collapsed:hover .menu-text {
        display: inline;
    }

/* sidebar Footer */
.gc-footer {
    background: #fff;
    padding: 0 4px;
    position: absolute;
    bottom: 0px;
    z-index: 2;
    width: 198px;
    height: 40px;
    color: var(--bs-gray-700);
}
.gc-footer-inner {
    border-top: 1px solid #eaecf4;
    margin-left: 12px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.gc-footer a {
    text-decoration: none;
    height: 14px;
    display: block;
    margin: -6px 0 0;
    padding-top: 0;
}
.sidebar.collapsed .gc-footer-inner {
    margin-left: 1px;
    transition: all 0.2s ease;
}
/* =====================
   MAIN CONTENT
   ===================== */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =====================
   HEADER
   ===================== */
/* Navbar / Topbar */
.topbar {
    height: 50px;
    background-color: var(--bg-header);
    /*border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);*/
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 1;
}
    .topbar i {font-size:16px;}

.profile-menu {
    outline: none;
}

.dropdown-panel {
    position: absolute;
    top: 48px;
    right: 0;
    z-index: 1000;
}

.header {
    height: 64px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-title {
    font-size: 16px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =====================
   PAGE CONTENT
   ===================== */
.page {
    padding: 24px;
}

/* =====================
   CARDS
   ===================== */
.card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.card-header {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card-value {
    font-size: 28px;
    font-weight: 600;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    border: none;
    cursor: pointer;
/*    transition: var(--transition);*/
    line-height: 1.2rem;
    font-weight:600;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--bs-white);
}

    .btn-primary:hover {
        background: var(--color-primary-hover);
    }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.e-btn.e-danger, .e-css.e-btn.e-danger {
    background: var(--bs-white);
    border-color: var(--bs-white);
    color: var(--danger);
}
    .e-btn.e-danger:hover, .e-css.e-btn.e-danger:hover,
    .e-btn.e-danger:focus, .e-css.e-btn.e-danger:focus {
        background: var(--danger);
        border-color: var(--danger);
        color: var(--bs-white);
    }
.e-btn.e-flat, .e-css.e-btn.e-flat {
    background: rgba(91, 99, 106, 0);
    border-color: rgba(86.4, 93, 100, 0);
    box-shadow: none;
    color: var(--bs-link-color);
}
    .e-btn.e-flat:hover, .e-css.e-btn.e-flat:hover,
    .e-btn.e-flat:focus, .e-css.e-btn.e-flat:focus {
        background: rgba(91, 99, 106, 0);
        border-color: rgba(86.4, 93, 100, 0);
        box-shadow: none;
        color: var(--bs-link-hover-color);
    }
.e-btn.e-flat:disabled, .e-btn.e-flat.e-disabled, .e-css.e-btn.e-flat:disabled, .e-css.e-btn.e-flat.e-disabled {
    background: none;
    border-color: rgba(255,255,255,0.0);
    color: rgba(108, 117, 125, .65);
}
.e-btn-round {
    background: none;
    border: none;
    box-shadow: none;
    color: var(--bs-link-color);
    width: 24px;
    max-height: 24px !important;
    border-radius: 20%;
    outline: none;
}
    .e-btn-round:hover,
    .e-btn-round:focus {
        background: rgba(256,256,256,0.4);
        color: var(--color-primary-hover);
        outline: none;
        box-shadow: none;
    }
    .e-btn .e-btn-icon {
        margin-top: 2px;
    }

.expand-trow::after {
    content: '\F229';
    font-family: bootstrap-icons !important;
    font-weight: 900;
    margin-left: 5px;
    color: var(--bs-gray-600);
    font-size: 10px;
    opacity: 0;
}
.expand-trow:hover::after {
    opacity: 1;
}

/* =====================
   TABLES
   ===================== */
.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th {
        font-size: 13px;
        color: var(--text-muted);
        text-align: left;
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .table td {
        padding: 14px 12px;
        border-bottom: 1px solid var(--border-color);
        font-size: 14px;
    }
.e-pager{
    font-size:12px;
}
    .e-pager .e-pagerdropdown {
        margin-top: -29px;
    }
        .e-pager .e-pagerdropdown e-ddl.e-input-group .e-dropdownlis {
            height: 36px;
        }

        /* =====================
   BADGES
   ===================== */
        .badge {
            padding: 4px 10px;
            font-size: 12px;
            border-radius: 999px;
            font-weight: 500;
        }

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background: #e0f2fe;
    color: #075985;
}

/* =====================
   FORMS
   ===================== */

/*controllers*/
.e-control input[type="password"] {
    font-size: 30px;
}

.e-textbox.invalid-input input {
    border-color: #d13438 !important;
    box-shadow: 0 0 0 1px rgba(209, 52, 56, 0.4);
}

.validation-message {
    color: #d13438;
    font-size: 13px;
}

/*end*/
input.e-input, .e-input-group input, .e-input-group.e-control-wrapper input, .e-input-group input.e-input, .e-input-group.e-control-wrapper input.e-input{
    height:36px;
}

.sf-textbox, .e-input-group, .e-dropdownlist, .e-numerictextbox {
    width: 100% !important;
}

.e-float-input input:focus ~ label.e-float-text, .e-float-input input:valid ~ label.e-float-text, .e-float-input input ~ label.e-label-top.e-float-text,
.e-float-input input[readonly] ~ label.e-label-top.e-float-text, .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input input label.e-float-text.e-label-top, .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
.e-float-input.e-control-wrapper input:valid ~ label.e-float-text, .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text, .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input label.e-float-text.e-label-top, .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text,
.e-float-input.e-input-focus input ~ label.e-float-text,
.e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
    font-size: 14px;
    font-weight: 500;
    transform: translate3d(-10px, -46px, 0) scale(1);
}
.form-group {
    margin-bottom: 1rem;
}
.input {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
}
    .input:focus {
        outline: none;
        border-color: var(--color-primary);
    }
.Fsection {
    background-color: #F8F8F8;
    padding: 1.2rem 1rem 1.5rem;
    border-radius: 6px;
}
.label, .control-label {
    font-size: 14px;
    font-weight: 500;
    transform: translate3d(2px, -4px, 0) scale(1);
    line-height: 19px;
    color: var(--bs-gray-700);
}
.caps-text .e-input,
.caps-text .e-list-item,
.caps-text .e-dropdowns{
    text-transform: capitalize !important;
}

/* Checkbox wrapper */
.e-checkbox-wrapper .e-frame,
.e-css.e-checkbox-wrapper .e-frame {
    width: 18px !important;
    height: 18px !important;
    line-height: 17px !important;
    font-size: 10px !important;
    border: 2px solid #a3adb7;
}
.e-checkbox-wrapper .e-frame::before,
.e-css.e-checkbox-wrapper .e-frame::before {
    line-height: 17px;
    font-size: 10px;
}

.e-checkbox-wrapper label:hover .e-frame,
.e-css.e-checkbox-wrapper label:hover .e-frame {
    border-color: var(--color-primary-hover);
    color: var(--color-primary-hover);
    content: "\e727";
}
.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check::before,
.e-checkbox-wrapper .e-checkbox:active + .e-frame.e-check::before,
.e-css.e-checkbox-wrapper .e-checkbox:focus + .e-frame.e-check::before,
.e-css.e-checkbox-wrapper .e-checkbox:active + .e-frame.e-check::before {
    font-size: 10px !important;
    color: #fff;
}

.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text, .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text, .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text, .e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text, .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text, .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text, .e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top {
    color: var(--bs-gray-700);
}

/*custom tabs*/
.customer-wizard .e-stepper-item.e-active .e-stepper-label {
    color: #0F4386;
    font-weight: 600;
}

.wizard-body {
    min-height: 300px;
}

.file-upload-card {
    max-width: 360px;
}

.upload-label {
    font-size: 13px;
    font-weight: 600;
    color: #344054;
    margin-bottom: 6px;
    display: block;
}

.upload-box {
    position: relative;
    border: 2px dashed #d0d5dd;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .upload-box:hover {
        border-color: #0F4386;
        background-color: #f0f6ff;
    }

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-text {
    font-size: 13px;
    color: #667085;
}

.preview-image {
    margin-top: 12px;
    max-height: 120px;
    border-radius: 6px;
    border: 1px solid #e4e7ec;
}

/*.e-grid .e-dialog .e-footer-content button {
    pointer-events: none;
    opacity: 0.5;
}*/
.disable-dialog-actions,
.e-grid .e-footer-content,
.custom-edit-dialog-stepper .e-dialog .e-footer-content {
    display: flex;
}

.stepper-action-bottom {
    position: absolute;
    width: 100%;
    bottom: 0%;

    border-top: 1px dotted gray;
}
    .stepper-action-bottom button{
        width: 120px
    }
    /* Tab header container */
    .e-tab .e-tab-header {
        /*    border-bottom: 1px solid #e0e0e0;*/
    }
    .e-tab .e-tab-header::before{
        border:none;
    }
    /* Individual tab */
    .e-tab .e-tab-header .e-toolbar-items {
        height: 40px;
        border: none;
    }
    .e-tab .e-tab-header .e-toolbar-item {
        padding: 6px 18px;
        border: none;
        height: 40px;
    }
        .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
            height: 40px;
            border: none;
        }
        .e-tab .e-tab-header .e-toolbar-item .e-text-wrap {
            height: 40px;
        }
        .e-tab .e-tab-header .e-toolbar-item .e-tab-text {
            font-family: "Manrope", sans-serif !important;
            font-weight: 600;
            font-size: 14px;
            color: var(--bs-gray-600);
        }

        .e-tab .e-tab-header .e-toolbar-item.e-active,
        .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
            border: none;
        }
        .e-tab .e-tab-header .e-toolbar-item.e-active:hover {
            background: none;
            border: none;
        }
        .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover,
        .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:active {
            border: none;
            color: var(--text-main);
        }
        .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text {
            font-weight: 600;
            font-size: 14px;
            border: none;
        }
        .e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-text-wrap,
        .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-text-wrap {
            height: 40px;
        }
        .e-tab .e-tab-header:not(.e-vertical) .e-toolbar-item.e-active{
            border:none;
        }
        /* Active tab */
        .e-tab .e-tab-header .e-toolbar-item.e-active .e-text-wrap,
        .e-tab .e-tab-header .e-toolbar-item.e-active .e-text-wrap {
            height: 40px;
            font-weight: 600;
            border: none;
        }
        .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text {
            color: var(--text-main);
            font-weight: 600;
            border: none;
        }
        /* Hover */


/* Active underline */
.e-tab .e-tab-header .e-indicator {
    background-color: #1A4D8F;
    height: 3px;
}

/* Tab content */
.e-tab .e-content {
    padding: 20px;
}

/* ===== SYNCFUSION TAB WRAPPER ===== */
.crm-tabs {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

    /* ===== TAB HEADER ===== */
    .crm-tabs .e-tab-header {
        background: #f8fafc;
        border-bottom: 1px solid #e5e7eb;
        padding: 0 12px;
        border-radius: 10px 10px 0 0;
    }

    /* ===== TAB ITEM ===== */
    .crm-tabs .e-toolbar-item {
        margin-right: 4px;
    }

    .crm-tabs .e-tab-text {
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
        padding: 12px 18px;
    }

    /* ===== ACTIVE TAB ===== */
    .crm-tabs .e-toolbar-item.e-active {
        color: #0F4386; /* your primary */
        border-radius: 8px 8px 0 0;
    }

        .crm-tabs .e-toolbar-item.e-active .e-tab-text {
            color: #fff;
        }

    /* ===== HOVER ===== */
    .crm-tabs .e-toolbar-item:not(.e-active):hover {
        color: #e8eef7;
        border-radius: 8px;
    }

    /* ===== TAB CONTENT ===== */
    .crm-tabs .e-content {
        padding: 20px;
        background: #fff;
        border-radius: 0 0 10px 10px;
    }



.e-search-input {
    width: 100%;
    max-width: 320px;
}

    .e-search-input .e-input-group-icon {
        color: #6c757d;
        cursor: pointer;
    }

    .e-search-input .e-input {
        padding-left: 0 !important;
    }

/*anoop code start*/
.google-apps-wrapper {
    position: relative;
    display: inline-block;
    outline: none;
}

/* circular button */
.google-apps-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 25px;
    transition: background .2s, transform .06s;
}

    .google-apps-btn:hover {
        background: #eaecf4;
        color: #000;
    }

/*.google-apps-btn:focus {
        outline: 2px solid rgba(31,79,155,0.12);
    }*/

/* icon */
.google-apps-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* dropdown panel */
.google-apps-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 30px rgb(5, 0, 0, 0.36);
    z-index: 1200;
}

/* grid */
.app-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}

/* item */
.app-item {
    display: inline-block;
    position:relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 8px;
    background: #f8f9fa;
    color: #222;
    border: none;
    cursor: pointer;
    transition: transform .08s, background .12s;
    text-align: left;
    text-decoration: none;
}

.app-item:hover, .app-item:focus {
        background: #e8f0fe;
        outline: none;
    }

.app-thumb {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    /*background: linear-gradient(180deg,#fff,#f0f4ff);*/
    position:relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1f4f9b;
    margin-bottom: 8px;
}
.app-thumb i{font-size:20px}

.app-label {
        font-size: 13px;
        position: relative;
        display: inline-block;
        margin-left: 8px;
    }

.profile-menu {
    position: relative;
    display: inline-block;
}

    /* Remove default marker */
    .profile-menu summary {
        list-style: none;
    }

        .profile-menu summary::-webkit-details-marker {
            display: none;
        }

/* Avatar button */
.profile-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 6px;
    border-radius: 50%;
    transition: background 0.2s;
}

    .profile-trigger:hover {
        background: #f2f2f2;
    }

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* Dropdown Panel */
.dropdown-panel {
    position: absolute;
    right: 0;
    margin-top: 12px;
    width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.15s ease-out;
    z-index: 20;
    color: #000000;
}

/* User section */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    font-size: 16px;
}

.user-info p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* Menu items */
.menu-item {
    display: block;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}

    .menu-item i {
        padding-right: 10px
    }

/*.menu-item:hover {
        background: #f5f6f7;
    }*/

.logout {
    color: #d9534f;
    font-weight: bold;
}

/* Divider */
.divider {
    height: 1px;
    background: #e5e5e5;
    margin: 10px 0;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*custom modal*/
.custom-edit-dialog.e-popup-open {
    max-width:50%;
}
.e-dlg-content {
/*    background-color: #F8F8F8;*/
}
.e-edit-dialog .e-dlg-header {
    display: none;
}
.e-footer-content .e-btn.e-flat{min-width:120px}
.e-footer-content .e-primary {
    float: right;
    width:30%;
}
    .e-footer-content .e-primary:hover,
    .e-footer-content .e-btn.e-primary.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
        color: #fff !important;
        background: var(--color-primary-hover);
        border-color: var(--color-primary-hover);
    }
    .e-footer-content .e-btn.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
        background: var(--bg-navitem-active);
        color: var(--color-primary);
        border-color: var(--bg-navitem-active);
    }
.e-footer-content .e-btn:hover.e-flat:not([DISABLED]):not(.e-success):not(.e-danger):not(.e-warning):not(.e-info) {
    background: #dbe6f5;
    border-color: #dbe6f5;
    color: var(--color-primary-hover);
}

.hideheader .e-dialog .e-dlg-header-content{
    display:none;
}



/*anoop code end*/


.row-actions {
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

/* Show icons on row hover */
.e-grid .e-row:hover .row-actions {
    opacity: 1;
}

/* Icon styling */
.row-actions .e-icons {
    font-size: 16px;
    color: #475569;
}

    .row-actions .e-icons:hover {
        color: #2563eb;
    }


/* =========================
   RESPONSIVE
========================= */

/*@media (max-width: 768px) {
    .sidebar {
        width: 190px;
    }

    .main-area {
        margin-left: 190px;
    }
}*/


/*table*/
.e-grid .e-headercell, .e-grid .e-detailheadercell {
    height: 2.5rem;
    background: #f2f4f7;
}
    .e-grid .e-headercell:hover, .e-grid .e-detailheadercell:hover
     {
        background: #d4dfef;
    }
    .e-grid .e-headercell.e-rcursor{}
    .e-grid .e-gridheader {
        color: #63727c;
    }

.e-grid .e-headercelldiv, e-headertext,
table thead tr td{
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.e-grid .e-rowcell {
    line-height: 2.25rem;
}

.e-grid .e-rowcell, .e-grid .e-groupcaption, .e-grid .e-indentcell,
.e-grid .e-recordplusexpand, .e-grid .e-recordpluscollapse, .e-grid .e-rowdragdropcell,
.e-grid .e-detailrowcollapse, .e-grid .e-detailrowexpand,
.e-grid .e-detailindentcell, .e-grid .e-detailcell,
.e-grid .e-emptyrow.e-show-added-row .e-lastrowcell {
    border-left: 1px solid #f7f7f7;
}
.e-grid .e-row:hover .e-rowcell {
    border-left: 1px solid #d7d7d7;
}
    .e-grid .e-gridheader tr:first-child th:not(.e-freezeleftborder,.e-freezerightborder) {
        border-left: 1px solid #d7d7d7;
    }

/* ===== FILTER TOOLBAR ===== */
.filter-toolbar {
    border-radius: 8px;
}

    .filter-toolbar .form-control,
    .filter-toolbar .form-select {
        border-radius: 6px;
    }

    .filter-toolbar .input-group-text {
        border-radius: 6px 0 0 6px;
        font-size: 0.8rem;
    }

    .filter-toolbar .form-control::placeholder {
        font-size: 0.8rem;
        color: #9ca3af;
    }

    .filter-toolbar select {
        font-size: 0.8rem;
    }

    .filter-toolbar input[type="date"] {
        font-size: 0.8rem;
    }

    .filter-toolbar button {
        border-radius: 6px;
    }