.ent-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 48px;
    background: #0f1b2d;
    border-bottom: 1px solid #1a2940;
}

.ent-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    gap: 0.75rem;
}

.ent-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.ent-header-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.ent-header-brand img {
    height: 28px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.15s;
}

.ent-header-brand:hover img {
    opacity: 1;
}

.ent-header-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.ent-header-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 0 0.65rem;
    height: 32px;
    max-width: 340px;
    flex: 1;
    transition: all 0.15s;
}

.ent-header-search:focus-within {
    background: rgba(255,255,255,0.09);
    border-color: rgba(91,156,246,0.4);
    box-shadow: 0 0 0 2px rgba(91,156,246,0.1);
}

.ent-header-search i {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ent-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 0;
}

.ent-search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.ent-search-kbd {
    font-size: 0.6rem;
    font-family: 'SF Mono','Fira Code','Consolas',monospace;
    color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 0.1rem 0.35rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.ent-search-wrap {
    position: relative;
    max-width: 340px;
    flex: 1;
}

.ent-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 420px;
    max-height: 400px;
    overflow-y: auto;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
    z-index: 1300;
    display: none;
}

.ent-search-results.open {
    display: block;
}

.ent-search-results::-webkit-scrollbar {
    width: 4px;
}

.ent-search-results::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.ent-search-group-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.55rem 0.85rem 0.3rem;
}

.ent-search-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
    transition: background 0.08s;
    cursor: pointer;
}

.ent-search-item:hover,
.ent-search-item.focused {
    background: rgba(255,255,255,0.04);
}

.ent-search-item-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}

.ent-search-item-icon i {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.ent-search-item-text {
    flex: 1;
    min-width: 0;
}

.ent-search-item-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ent-search-item-desc {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.05rem;
}

.ent-search-item-arrow {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.ent-search-item:hover .ent-search-item-arrow {
    color: rgba(255,255,255,0.35);
}

.ent-search-empty {
    padding: 1.5rem 0.85rem;
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
}

.ent-search-empty i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    opacity: 0.4;
}

.ent-search-footer {
    padding: 0.45rem 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ent-search-footer-hint {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
}

.ent-search-footer-hint kbd {
    font-family: 'SF Mono','Fira Code','Consolas',monospace;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 0 0.25rem;
    font-size: 0.55rem;
    margin: 0 0.1rem;
}

.ent-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ent-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ent-header-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.12s;
    text-decoration: none;
    position: relative;
    font-size: 0.85rem;
}

.ent-header-icon:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

.ent-notif-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    border: 1.5px solid #0f1b2d;
    font-size: 0;
}

.ent-header-balance {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4ade80;
    padding: 0.3rem 0.65rem;
    background: rgba(74,222,128,0.06);
    border: 1px solid rgba(74,222,128,0.12);
    border-radius: 4px;
}

.ent-header-balance i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.ent-header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.12s;
    position: relative;
}

.ent-header-user:hover {
    background: rgba(255,255,255,0.06);
}

.ent-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-user-avatar i {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
}

.ent-user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ent-user-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.ent-user-plan {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.ent-user-caret {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    margin-left: 0.15rem;
    transition: transform 0.15s;
}

.ent-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.15s;
    z-index: 1200;
    overflow: hidden;
}

.ent-user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ent-dropdown-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ent-dropdown-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-dropdown-avatar i {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.ent-dropdown-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.ent-dropdown-email {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.1rem;
    line-height: 1.3;
}

.ent-dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.ent-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.1s;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.ent-dropdown-item:hover {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.95);
}

.ent-dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.ent-dropdown-item:hover i {
    color: rgba(255,255,255,0.55);
}

.ent-dropdown-item-danger {
    color: rgba(248,113,113,0.8);
}

.ent-dropdown-item-danger:hover {
    background: rgba(248,113,113,0.06);
    color: #f87171;
}

.ent-dropdown-item-danger i {
    color: rgba(248,113,113,0.4);
}

.ent-dropdown-item-danger:hover i {
    color: rgba(248,113,113,0.7);
}

.ent-dropdown-logout {
    margin: 0;
}

.ent-mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.12s;
}

.ent-mobile-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.ent-mobile-toggle i {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}


.ent-sidebar {
    width: 240px;
    background: #0a0e17;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
    transition: width 0.2s ease;
    z-index: 100;
}

.ent-sidebar::-webkit-scrollbar {
    width: 4px;
}

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

.ent-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.ent-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.ent-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ent-sidebar-brand-icon {
    font-size: 1rem;
    color: #5b9cf6;
}

.ent-sidebar-brand-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.2px;
}

.ent-sidebar-collapse {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    transition: all 0.12s;
}

.ent-sidebar-collapse:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
}

.ent-sidebar-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.ent-sidebar-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-sidebar-user-avatar i {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
}

.ent-sidebar-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ent-sidebar-user-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ent-sidebar-user-id {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.3);
    font-family: 'SF Mono','Fira Code','Consolas',monospace;
}

.ent-sidebar-nav {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
}

.ent-nav-group {
    margin-bottom: 0.25rem;
}

.ent-nav-group-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.6rem 1rem 0.3rem;
}

.ent-nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.1s;
    position: relative;
    border-left: 3px solid transparent;
    font-weight: 400;
}

.ent-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    transition: color 0.1s;
}

.ent-nav-item span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ent-nav-item:hover {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.9);
}

.ent-nav-item:hover i {
    color: rgba(255,255,255,0.6);
}

.ent-nav-item.active {
    background: rgba(91,156,246,0.08);
    color: #5b9cf6;
    border-left-color: #5b9cf6;
    font-weight: 600;
}

.ent-nav-item.active i {
    color: #5b9cf6;
}

.ent-nav-badge {
    font-size: 0.52rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    flex-shrink: 0;
    line-height: 1.2;
}

.ent-sidebar-footer {
    padding: 0.65rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.ent-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.1s;
}

.ent-sidebar-footer-link:hover {
    color: #5865f2;
}

.ent-sidebar-footer-link i {
    font-size: 0.85rem;
}

.ent-sidebar.collapsed {
    width: 52px;
}

.ent-sidebar.collapsed .ent-sidebar-brand-text,
.ent-sidebar.collapsed .ent-sidebar-user-info,
.ent-sidebar.collapsed .ent-nav-group-label,
.ent-sidebar.collapsed .ent-nav-item span,
.ent-sidebar.collapsed .ent-nav-badge,
.ent-sidebar.collapsed .ent-sidebar-footer-link span {
    display: none;
}

.ent-sidebar.collapsed .ent-sidebar-head {
    justify-content: center;
    padding: 0.75rem 0.5rem;
}

.ent-sidebar.collapsed .ent-sidebar-collapse {
    position: relative;
}

.ent-sidebar.collapsed .ent-sidebar-collapse i {
    transform: rotate(180deg);
}

.ent-sidebar.collapsed .ent-sidebar-user {
    justify-content: center;
    padding: 0.75rem 0.5rem;
}

.ent-sidebar.collapsed .ent-nav-item {
    justify-content: center;
    padding: 0.55rem 0;
    border-left: 3px solid transparent;
}

.ent-sidebar.collapsed .ent-nav-item.active {
    border-left-color: #5b9cf6;
}

.ent-sidebar.collapsed .ent-sidebar-footer-link {
    justify-content: center;
}

.dashboard-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-top: 48px;
    box-sizing: border-box;
    overflow: hidden;
}

.dashboard-main {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.dashboard-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: #000;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.dashboard-content .container {
    max-width: none;
    width: 100%;
}

.ent-services-dropdown {
    position: relative;
}

.ent-services-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.6rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.12s;
    height: 32px;
    white-space: nowrap;
}

.ent-services-toggle:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.ent-services-toggle.open {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}

.ent-services-grid-icon {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

.ent-services-toggle:hover .ent-services-grid-icon {
    color: rgba(255,255,255,0.7);
}

.ent-services-label {
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif;
}

.ent-services-caret {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
    transition: transform 0.15s;
    margin-left: 0.1rem;
}

.ent-services-toggle.open .ent-services-caret {
    transform: rotate(180deg);
}

.ent-services-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 320px;
    background: #0f1520;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: all 0.12s ease;
    z-index: 1200;
    overflow: hidden;
}

.ent-services-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ent-services-panel-header {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ent-services-panel-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ent-services-list {
    padding: 0.35rem 0;
}

.ent-service-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.85rem;
    text-decoration: none;
    transition: background 0.1s;
    cursor: pointer;
}

.ent-service-item:hover {
    background: rgba(255,255,255,0.04);
}

.ent-service-item-current {
    background: rgba(91,156,246,0.05);
}

.ent-service-item-current:hover {
    background: rgba(91,156,246,0.08);
}

.ent-service-icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-service-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.ent-service-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.ent-service-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.3;
}

.ent-service-desc {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.32);
    line-height: 1.3;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ent-service-check {
    font-size: 0.62rem;
    color: #5b9cf6;
    flex-shrink: 0;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .ent-mobile-toggle {
        display: flex;
    }

    .ent-header-search {
        display: none;
    }

    .ent-header-service {
        display: none;
    }

    .ent-services-dropdown .ent-services-label {
        display: none;
    }

    .ent-services-panel {
        position: fixed;
        left: 0.5rem;
        right: 0.5rem;
        top: 48px;
        width: auto;
    }

    .ent-sidebar-collapse {
        display: none;
    }

    .ent-user-meta {
        display: none;
    }

    .ent-header-balance span {
        display: none;
    }

    .ent-header-balance {
        padding: 0.3rem;
    }

    .ent-sidebar {
        position: fixed;
        top: 48px;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 48px);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 1050;
        box-shadow: none;
    }

    .ent-sidebar.active {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,0.5);
    }

    .ent-sidebar.collapsed {
        width: 280px;
    }

    .ent-sidebar.collapsed .ent-sidebar-brand-text,
    .ent-sidebar.collapsed .ent-sidebar-user-info,
    .ent-sidebar.collapsed .ent-nav-group-label,
    .ent-sidebar.collapsed .ent-nav-item span,
    .ent-sidebar.collapsed .ent-nav-badge,
    .ent-sidebar.collapsed .ent-sidebar-footer-link span {
        display: flex;
    }

    .ent-sidebar.collapsed .ent-sidebar-head {
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .ent-sidebar.collapsed .ent-sidebar-user {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }

    .ent-sidebar.collapsed .ent-nav-item {
        justify-content: flex-start;
        padding: 0.45rem 1rem;
    }

    .ent-sidebar.collapsed .ent-sidebar-footer-link {
        justify-content: flex-start;
    }

    .sidebar-overlay {
        display: block;
    }

    .dashboard-content {
        width: 100%;
        padding: 1rem;
    }

    .dashboard-content .container {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .ent-header-inner {
        padding: 0 0.65rem;
    }

    .ent-header-brand img {
        height: 22px;
    }

    .ent-header-sep:first-of-type {
        display: none;
    }

    .ent-sidebar {
        width: 260px;
    }

    .dashboard-content {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .ent-header-balance {
        display: none;
    }

    .ent-header-right .ent-header-sep {
        display: none;
    }

    .dashboard-content {
        padding: 0.5rem 0.35rem;
    }
}