/* Minification failed. Returning unminified contents.
(1211,1): run-time error CSS1019: Unexpected token, found '@import'
(1211,9): run-time error CSS1019: Unexpected token, found 'url(https://fonts.googleapis.com/css?family=Denk+One)'
(1212,1): run-time error CSS1019: Unexpected token, found '@import'
(1212,9): run-time error CSS1019: Unexpected token, found 'url(https://fonts.googleapis.com/css?family=Arimo)'
 */
/* Login Page Styles */
#LoginPage {
    background-image: url(../Resources/Bg.jpg);
    background-size: cover;
}

.LoginPageMainPan {
    border-style: solid;
    border-width: 0.2px;
    border-color: #15055b;
   /* width: 22%;*/
    width: 310px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    padding-top: 10px;
    padding-bottom: 20px;
    height: auto;
    border-radius: 10px;
    background-color: white;

}
    
.MobileLoginPageMainPan {
    border-style: solid;
    border-width: 0.2px;
    border-color: #15055b;
    /* width: 22%;*/
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    padding-top: 10px;
    padding-bottom: 20px;
    height: auto;
    border-radius: 10px;
    background-color: white;
    opacity: 0.9;
}
.form-control {
        margin-top: 5px;
    }

.navbar-inverse .navbar-brand {
    color: white !important;
}










/*
    Top Header Bar
*/
.top-header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 60px;
    width: calc(100% - 60px);
    z-index: 6;
    display: flex;
    align-items: center;
    padding: 0;
    height: 54px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e5e7eb;
    transition: left 0.25s ease, width 0.25s ease;
}

.top-header-brand {
    font-family: 'Segoe UI', Verdana, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    color: #1e293b;
    margin-left: 10px;
    letter-spacing: 0.3px;
    transition: opacity 0.25s ease;
}

/*
    Navbar Links
*/
.nav-links {
    display: flex;
    align-items: center;
    margin-left: 28px;
    gap: 2px;
}

.nav-link-item {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-item:hover,
.nav-link-item:focus {
    background-color: #f1f5f9;
    color: #0e6580;
    text-decoration: none;
}

.nav-link-item i:first-child {
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.nav-link-arrow {
    font-size: 11px;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

/* Navbar Dropdown */
.nav-link-dropdown {
    position: relative;
}

.nav-link-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 6px;
    min-width: 200px;
    z-index: 100;
}

.nav-link-dropdown-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 6px 0;
}

.nav-link-dropdown-card a {
    display: block;
    padding: 9px 18px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.12s ease, color 0.12s ease;
}

.nav-link-dropdown-card a:hover {
    background-color: #f1f5f9;
    color: #0e6580;
    text-decoration: none;
}

.nav-link-dropdown-card a i {
    width: 18px;
    margin-right: 8px;
    text-align: center;
    color: #64748b;
}

.nav-link-dropdown:hover .nav-link-dropdown-menu {
    display: block;
}

.nav-link-dropdown:hover > .nav-link-item {
    background-color: #f1f5f9;
    color: #0e6580;
}

.nav-link-dropdown:hover .nav-link-arrow {
    transform: rotate(180deg);
}

/*
    Header Profile Widget
*/
.header-profile {
    margin-left: auto;
    margin-right: 20px;
    position: relative;
}

.header-profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

    .header-profile-trigger:hover {
        background-color: #f1f5f9;
    }

.header-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.header-profile-name {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-profile-arrow {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.2s ease;
}

/* Dropdown */
.header-profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 8px;
    min-width: 260px;
    z-index: 100;
}

.header-profile-dropdown-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.header-profile:hover .header-profile-dropdown {
    display: block;
}

.header-profile:hover .header-profile-arrow {
    transform: rotate(180deg);
}

.header-profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.header-profile-dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.header-profile-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.header-profile-dropdown-name {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-profile-dropdown-desc {
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-profile-dropdown-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 0;
}

.header-profile-dropdown-logout {
    display: block;
    padding: 12px 16px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

    .header-profile-dropdown-logout:hover {
        background-color: #fef2f2;
        color: #dc2626;
        text-decoration: none;
    }

    .header-profile-dropdown-logout i {
        margin-right: 8px;
    }

/*
    Dashboard Style Begin
*/
.HomePageBadge {
    overflow-x: visible;
}
.FormBadge {
    float: left;
    height: 30px;
    width: 40px;
    margin-left: 19px;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
    float: left;
    color: black;
    font-family: Verdana;
    font-size: 12px;
    border-radius: 5px;
    background: linear-gradient(to bottom,#0e6580 0%,#0e6580 100%);
}
.FormBadgeInner {
    height: 40px;
    width: 60px;
    padding-top: 10px;
    color: white;
    font-family: Verdana;
    font-size: 12px;
    border-radius: 5px;
    background: linear-gradient(to bottom,#0e6580 0%,#0e6580 100%);
    border-style: groove;
}
    .FormBadgeInner:hover {
        height: 40px;
        width: 60px;
        padding-top: 10px;
        color: #0e6580;
        font-family: Verdana;
        font-size: 12px;
        border-radius: 5px;
        background: linear-gradient(to bottom,white 0%,white 100%);
        border-style: groove;
    }

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 4px;
}

.Badge {
    flex: 1 1 180px;
    max-width: 220px;
    padding: 18px 20px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 80px;
    box-sizing: border-box;
}

    .Badge:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: #d1d5db;
    }

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5f6b7a;
    font-size: 16px;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-count {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    font-family: 'Segoe UI', sans-serif;
}

.badge-caption {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    font-family: 'Segoe UI', sans-serif;
}

.ResultBadge {
    margin-left: 2%;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 100px;
    padding: 10px;
    float: left;
    width: 23%;
    color: #FFFFFF;
    border-radius: 10px;
    background: linear-gradient(to bottom,#5685af 0%,#8cb2d5 100%);
    border-style: groove;
}
/*
    Dashboard Style Ends
*/

/*
    Dashboard Card Panels
*/
.dash-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    overflow: hidden;
}

.dash-card-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.dash-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.dash-card-body {
    padding: 0;
}

    .dash-card-body .table {
        margin-bottom: 0;
    }

/* Dashboard Table */
.dash-table {
    font-family: 'Segoe UI', sans-serif;
}

    .dash-table > thead > tr > th {
        font-size: 11px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e5e7eb;
        padding: 10px 20px;
        background: none;
    }

    .dash-table > tbody > tr > td {
        font-size: 12px;
        color: #334155;
        padding: 8px 20px;
        border-top: 1px solid #f1f5f9;
        vertical-align: middle;
    }

    .dash-table > tbody > tr:hover > td {
        background-color: #f8fafc;
    }
/*
    Dashboard Card Panels End
*/

.RegisterBody {
}

    .RegisterBody label {
        margin-top: 15px;
    }


.FormBody {
    margin-top: 30px;
    background-color: white;
    border-radius: 20px;
    width:80%;
    margin-left:auto;
    margin-right:auto;
    padding-bottom: 20px;
    border:groove;
}
.FormBodyList {
    margin-top: 70px;
    background-color: transparent;
    padding-bottom: 20px;
}

    .FormBody h2, .FormBodyList h2 {
        color: #0e6580;
        padding-bottom: 10px;
        text-align: center;
        border-bottom-style: groove;
    }
.FormBody h3 {
    background: linear-gradient(to bottom,#009ece 0%,#009ece 100%);
    color: white;
    padding: 10px 10px 10px 10px;
    text-align: center;
}

.Attachviewbox {
    padding: 10px;
    float: left;
    margin: 10px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    color: #5685af;
    border: 1px dashed #8cb2d5;
}

    .Attachviewbox:hover {
        color: white;
        background-color: #5685af;
    }

    .Attachviewbox span {
        padding: 10px;
        margin: 5px;
        overflow: hidden;
    }

    .Attachviewbox i {
        font-size: 56px;
        padding: 10px;
    }

.AttachviewDetails {
    padding: 10px;
}

.ReportDataClass {
    margin-left: 20px;
}
.hh-grayBox {
    background-color: #F8F8F8;
    margin-bottom: 20px;
    padding: 35px;
    margin-top: 20px;
}

.pt45 {
    padding-top: 45px;
}

.order-tracking {
    text-align: center;
    width: 33.33%;
    position: relative;
    display: block;
}

    .order-tracking .is-complete {
        display: block;
        position: relative;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        border: 0px solid #AFAFAF;
        background-color: #f7be16;
        margin: 0 auto;
        transition: background 0.25s linear;
        -webkit-transition: background 0.25s linear;
        z-index: 2;
    }

        .order-tracking .is-complete:after {
            display: block;
            position: absolute;
            content: '';
            height: 14px;
            width: 7px;
            top: -2px;
            bottom: 0;
            left: 5px;
            margin: auto 0;
            border: 0px solid #AFAFAF;
            border-width: 0px 2px 2px 0;
            transform: rotate(45deg);
            opacity: 0;
        }

    .order-tracking.completed .is-complete {
        border-color: #27aa80;
        border-width: 0px;
        background-color: #27aa80;
    }

        .order-tracking.completed .is-complete:after {
            border-color: #fff;
            border-width: 0px 3px 3px 0;
            width: 7px;
            left: 11px;
            opacity: 1;
        }

    .order-tracking p {
        color: #A4A4A4;
        font-size: 16px;
        margin-top: 8px;
        margin-bottom: 0;
        line-height: 20px;
    }

        .order-tracking p span {
            font-size: 14px;
        }

    .order-tracking.completed p {
        color: #000;
    }

    .order-tracking::before {
        content: '';
        display: block;
        height: 3px;
        width: calc(100% - 40px);
        background-color: #f7be16;
        top: 13px;
        position: absolute;
        left: calc(-50% + 20px);
        z-index: 0;
    }

    .order-tracking:first-child:before {
        display: none;
    }

    .order-tracking.completed:before {
        background-color: #27aa80;
    }
/*
    Sidebar — Three-State System
    States: mini (60px default) | hover-expand (250px overlay) | pinned (250px push)
    Theme: Light / White
*/

/* ── Base sidebar: mini state (60px, always visible) ── */
.sidebar {
    height: 100%;
    width: 60px;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.25s ease, box-shadow 0.25s ease;
    border-right: 1px solid #e5e7eb;
    box-shadow: none;
}

/* ── Hover expand: sidebar grows to 250px as overlay ── */
.sidebar:hover {
    width: 250px;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.08);
}

/* ── Pinned state: body gets .sidebar-pinned class ── */
.sidebar-pinned .sidebar {
    width: 250px;
    box-shadow: none;
    border-right: 1px solid #e5e7eb;
}

/* Sidebar custom scrollbar */
.sidebar::-webkit-scrollbar {
    width: 4px;
}

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

.sidebar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/*
    Sidebar Brand Area
*/
.sb-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    flex-shrink: 0;
}

.sb-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

/*
    Sidebar Menu
*/
.sb-menu {
    padding: 8px 0;
    margin: 0;
}

.sb-item {
    list-style: none;
    position: relative;
}

.sb-link {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    color: #475569;
    transition: background-color 0.15s ease, color 0.15s ease;
    border: none;
    border-bottom: none;
    white-space: nowrap;
    border-radius: 6px;
    margin: 1px 8px;
    position: relative;
}

.sb-link:hover,
.sb-link:focus {
    background-color: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
}

/* Active item — left teal accent bar */
.sb-link.active {
    background-color: #f0f9ff;
    color: #0e6580;
    border-left: 3px solid #0e6580;
    padding-left: 13px;
}

.sb-link.active .sb-icon {
    color: #0e6580;
}

.sb-icon {
    width: 20px;
    min-width: 20px;
    font-size: 14px;
    color: #94a3b8;
    margin-right: 12px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.15s ease;
}

.sb-link:hover .sb-icon {
    color: #475569;
}

.sb-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: opacity 0.2s ease 0.05s;
}

/* Show text on hover or pinned */
.sidebar:hover .sb-text,
.sidebar-pinned .sidebar .sb-text {
    opacity: 1;
}

.sb-arrow {
    margin-left: auto;
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.25s ease, opacity 0.2s ease;
    opacity: 0;
}

/* Show arrow on hover or pinned */
.sidebar:hover .sb-arrow,
.sidebar-pinned .sidebar .sb-arrow {
    opacity: 1;
}

.sb-parent[aria-expanded="true"] .sb-arrow {
    transform: rotate(180deg);
}

/*
    Sidebar — Mini state: center icons
*/
.sb-link {
    justify-content: center;
}

.sidebar:hover .sb-link,
.sidebar-pinned .sidebar .sb-link {
    justify-content: flex-start;
}

/* In mini state, hide the margin-right on icon since it's centered */
.sb-icon {
    margin-right: 0;
}

.sidebar:hover .sb-icon,
.sidebar-pinned .sidebar .sb-icon {
    margin-right: 12px;
}

/*
    Sidebar — Mini state tooltips (CSS-only)
    Dark tooltip appears to the right of each icon when sidebar is mini
*/
.sb-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1e293b;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 100;
}

/* Show tooltip only in mini state (not hovered, not pinned) */
.sb-item:hover > .sb-link::after {
    opacity: 1;
}

/* Hide tooltips when sidebar is expanded (hover or pinned) */
.sidebar:hover .sb-link::after,
.sidebar-pinned .sidebar .sb-link::after {
    opacity: 0;
    display: none;
}

/*
    Sidebar Submenu
*/
.sb-submenu {
    padding: 0;
    margin: 0;
    background-color: transparent;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

/* Submenus only expand when sidebar is wide (hover or pinned) */
.sidebar:hover .sb-submenu.in,
.sidebar:hover .sb-submenu.collapse.in,
.sidebar-pinned .sidebar .sb-submenu.in,
.sidebar-pinned .sidebar .sb-submenu.collapse.in {
    max-height: 500px;
    opacity: 1;
}

.sb-sub-link {
    padding-left: 48px;
    font-size: 12px;
    color: #64748b;
}

.sb-sub-link .sb-icon {
    font-size: 12px;
    width: 16px;
    min-width: 16px;
}

.sb-sub-link:hover,
.sb-sub-link:focus {
    color: #1e293b;
    background-color: #f1f5f9;
}

/*
    Sidebar User Profile (inside sidebar)
*/
.sb-user-profile {
    display: flex;
    align-items: center;
    padding: 16px 14px;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.sb-user-avatar {
    flex-shrink: 0;
}

.sb-user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.sb-user-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease 0.05s;
}

/* Show user info on hover or pinned */
.sidebar:hover .sb-user-info,
.sidebar-pinned .sidebar .sb-user-info {
    opacity: 1;
}

.sb-user-name {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-user-desc {
    font-family: 'Segoe UI', sans-serif;
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*
    Sidebar — reset old anchor defaults
*/
.sidebar a {
    border-bottom-style: none;
    border-bottom-width: 0;
}

/* Sidebar nav wrapper (from partial view) */
.sb-nav {
    padding: 0;
    margin: 0;
}

.openbtn {
    font-size: 18px;
    cursor: pointer;
    background-color: transparent;
    line-height: 1;
    color: #475569;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    margin-left: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .openbtn:hover {
        background-color: #f1f5f9;
        color: #1e293b;
    }

/* ── Main content area — shifts based on sidebar state ── */
#main {
    transition: margin-left 0.25s ease;
    margin-left: 60px;
    padding: 16px;
    overflow-x: hidden;
}

/* When pinned, push content to 250px */
.sidebar-pinned #main {
    margin-left: 250px;
}

/* When pinned, header shifts right too */
.sidebar-pinned .top-header {
    left: 250px;
    width: calc(100% - 250px);
}

/* ── Desktop: sidebar hover shifts the navbar right ── */
@media (min-width: 769px) {
    /* Shift header to align with expanded sidebar */
    .sidebar:hover ~ .top-header {
        left: 250px;
        width: calc(100% - 250px);
    }
}

body {
    padding-top: 0px !important;
    padding-bottom: 20px;
    background-color: #f4f5f7;
}

/* ── Mobile: hide sidebar, full-width content ── */
@media all and (min-width:230px) and (max-width: 768px) {
    .LoginPageMainPan {
        width: 98%;
    }
    .Badge{
        max-width: 100%;
        flex: 1 1 100%;
    }
    .header-profile-name {
        display: none;
    }
    .header-profile-trigger {
        gap: 4px;
        padding: 6px 8px;
    }
    .nav-links {
        display: none;
    }

    /* Hide mini sidebar on mobile */
    .sidebar {
        width: 0;
        border-right: none;
    }

    /* Mobile: burger toggles sidebar as full overlay */
    .sidebar-pinned .sidebar {
        width: 250px;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.08);
        z-index: 10;
    }

    .sidebar:hover {
        width: 0;
        box-shadow: none;
    }

    .sidebar-pinned .sidebar:hover {
        width: 250px;
    }

    /* Content takes full width on mobile */
    #main {
        margin-left: 0;
    }

    .sidebar-pinned #main {
        margin-left: 0;
    }

    .top-header {
        left: 0;
        width: 100%;
    }

    .sidebar-pinned .top-header {
        left: 0;
        width: 100%;
    }

    /* Show text/arrows in mobile sidebar */
    .sidebar-pinned .sidebar .sb-text,
    .sidebar-pinned .sidebar .sb-arrow,
    .sidebar-pinned .sidebar .sb-user-info {
        opacity: 1;
    }

    .sidebar-pinned .sidebar .sb-link {
        justify-content: flex-start;
    }

    .sidebar-pinned .sidebar .sb-icon {
        margin-right: 12px;
    }

    /* Mobile overlay backdrop (optional — clicking outside closes) */
}

#parent {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#child {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}



.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .collapsible.active, .collapsible:hover {
        background-color: #555;
    }

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

@import url(https://fonts.googleapis.com/css?family=Denk+One);
@import url(https://fonts.googleapis.com/css?family=Arimo);
.rotingtxt{
	position: absolute;
	opacity:0.1;
}




