:root {
    --ent-bg: #fafafa;
    --ent-surface: #ffffff;
    --ent-surface-alt: #f4f4f5;
    --ent-ink: #09090b;
    --ent-ink-secondary: #52525b;
    --ent-ink-muted: #a1a1aa;
    --ent-border: #e4e4e7;
    --ent-border-light: #f4f4f5;
    --ent-primary: #6366f1;
    --ent-primary-soft: rgba(99, 102, 241, 0.08);
    --ent-primary-hover: #4f46e5;
    --ent-secondary: #a855f7;
    --ent-secondary-soft: rgba(168, 85, 247, 0.08);
    --ent-success: #10b981;
    --ent-success-soft: rgba(16, 185, 129, 0.08);
    --ent-warning: #f59e0b;
    --ent-warning-soft: rgba(245, 158, 11, 0.08);
    --ent-danger: #f43f5e;
    --ent-danger-soft: rgba(244, 63, 94, 0.08);
    --ent-sidebar-w: 260px;
    --ent-header-h: 64px;
    --ent-radius: 12px;
    --ent-radius-lg: 16px;
    --ent-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --ent-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --ent-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --ent-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ent-ink);
    background: var(--ent-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT SHELL ===== */

.ent-shell {
    display: grid;
    grid-template-columns: var(--ent-sidebar-w) 1fr;
    grid-template-rows: var(--ent-header-h) 1fr;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */

.ent-sidebar {
    grid-column: 1;
    grid-row: 1 / -1;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
    z-index: 30;
}

.ent-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.ent-sidebar-org-inline {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.75rem 0.75rem 0.3rem;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ent-sidebar-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.ent-sidebar-brand-text {
    display: flex;
    flex-direction: column;
}

.ent-sidebar-brand-name {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ent-sidebar-brand-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-top: 1px;
}

.ent-sidebar-nav {
    flex: 1;
    padding: 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ent-nav-group-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    padding: 1.1rem 0.6rem 0.45rem;
}

.ent-nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.855rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ent-transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.ent-nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
}

.ent-nav-item.active {
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
}

.ent-nav-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

.ent-nav-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    line-height: 1.3;
}

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

.ent-org-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ent-org-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
}

.ent-org-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ent-org-info {
    flex: 1;
    min-width: 0;
}

.ent-org-name {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ent-org-plan {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Muted burgundy: reads as “exit session” without matching inline error reds */
.ent-sidebar-logout-btn {
    margin-top: 0.65rem;
    width: 100%;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(220, 168, 178, 0.22);
    background: rgba(48, 28, 36, 0.92);
    color: #e8b4bc;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all var(--ent-transition);
}

.ent-sidebar-logout-btn svg {
    width: 14px;
    height: 14px;
}

.ent-sidebar-logout-btn:hover:not(:disabled) {
    background: rgba(58, 32, 40, 0.98);
    border-color: rgba(232, 180, 188, 0.38);
    color: #f5d0d6;
}

.ent-sidebar-logout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== HEADER ===== */

.ent-header {
    grid-column: 2;
    grid-row: 1;
    background: var(--ent-surface);
    border-bottom: 1px solid var(--ent-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.75rem;
    z-index: 20;
    min-width: 0;
}

.ent-header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ent-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ent-border);
    border-radius: 8px;
    padding: 0.4rem;
    cursor: pointer;
    color: var(--ent-ink);
}

.ent-mobile-toggle svg {
    width: 20px;
    height: 20px;
}

.ent-page-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ent-ink);
}

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

.ent-header-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--ent-border);
    background: var(--ent-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ent-ink-secondary);
    transition: all var(--ent-transition);
    position: relative;
}

.ent-header-btn:hover {
    background: var(--ent-surface-alt);
    color: var(--ent-ink);
}

.ent-header-btn svg {
    width: 18px;
    height: 18px;
}

.ent-header-btn .ent-notif-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ent-danger);
    border: 2px solid var(--ent-surface);
}

.ent-user-trigger {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem;
    padding-right: 0.6rem;
    border-radius: 10px;
    border: 1px solid var(--ent-border);
    background: var(--ent-surface);
    cursor: pointer;
    transition: all var(--ent-transition);
    margin-left: 0.25rem;
}

.ent-user-trigger:hover {
    background: var(--ent-surface-alt);
}

.ent-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ent-surface-alt);
}

.ent-user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ent-user-details {
    display: flex;
    flex-direction: column;
}

.ent-user-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ent-ink);
    line-height: 1.2;
}

.ent-user-role {
    font-size: 0.68rem;
    color: var(--ent-ink-muted);
    font-weight: 500;
}

/* ===== MAIN CONTENT ===== */

.ent-main {
    grid-column: 2;
    grid-row: 2;
    padding: 1.5rem 1.75rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    min-height: 0;
}

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

/* ===== ENTERPRISE ONBOARDING (standalone full page) ===== */

.ent-onboarding-screen {
    min-height: 100vh;
    display: none;
    flex-direction: column;
    background: var(--ent-surface-alt);
    color: var(--ent-ink);
}

.ent-onboarding-topbar {
    flex-shrink: 0;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    background: var(--ent-surface);
    border-bottom: 1px solid var(--ent-border);
    box-shadow: var(--ent-shadow-sm);
}

.ent-onboarding-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ent-onboarding-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.ent-onboarding-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ent-onboarding-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ent-ink);
}

.ent-onboarding-brand-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ent-ink-muted);
}

.ent-onboarding-main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 2.5rem 1.25rem 3rem;
}

.ent-onboarding-container {
    width: 100%;
    max-width: 560px;
}

.ent-onboarding-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.ent-onboarding-step-done,
.ent-onboarding-step-current,
.ent-onboarding-step-pending {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-onboarding-step-done {
    background: var(--ent-success);
    color: #fff;
}

.ent-onboarding-step-current {
    background: var(--ent-primary);
    color: #fff;
    box-shadow: 0 0 0 4px var(--ent-primary-soft);
}

.ent-onboarding-step-pending {
    background: var(--ent-border-light);
    color: var(--ent-ink-muted);
    border: 1px solid var(--ent-border);
}

.ent-onboarding-step-line {
    flex: 1;
    height: 2px;
    max-width: 48px;
    background: var(--ent-success);
    margin: 0 0.35rem;
    border-radius: 1px;
}

.ent-onboarding-step-line-muted {
    background: var(--ent-border);
}

.ent-onboarding-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ent-ink-muted);
    margin: 0 0 0.5rem;
}

.ent-onboarding-title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.65rem;
    line-height: 1.2;
    color: var(--ent-ink);
}

.ent-onboarding-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ent-ink-secondary);
    margin: 0 0 1.75rem;
}

.ent-onboarding-panel {
    background: var(--ent-surface);
    border: 1px solid var(--ent-border);
    border-radius: var(--ent-radius-lg);
    box-shadow: var(--ent-shadow-md);
    padding: 1.5rem 1.5rem 1.65rem;
}

.ent-form-hint {
    font-size: 0.8rem;
    color: var(--ent-ink-muted);
    margin: 0.4rem 0 0;
    line-height: 1.45;
}

.ent-form-hint span {
    color: var(--ent-ink-secondary);
    font-weight: 600;
}

.ent-onboarding-page-footer {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--ent-ink-muted);
    border-top: 1px solid var(--ent-border);
    background: var(--ent-surface);
}

/* ===== AUTH SCREEN (before login) ===== */

.ent-auth-screen {
    display: grid;
    grid-template-columns: 480px 1fr;
    min-height: 100vh;
}

.ent-auth-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.ent-auth-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.12), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1), transparent 40%);
    pointer-events: none;
}

.ent-auth-hero > * {
    position: relative;
    z-index: 1;
}

.ent-auth-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ent-auth-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.ent-auth-brand-text {
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 700;
}

.ent-auth-hero-content {
    padding: 1rem 0;
}

.ent-auth-hero-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.ent-auth-hero-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 380px;
}

.ent-auth-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.ent-auth-hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    font-weight: 500;
}

.ent-auth-hero-features li svg {
    width: 16px;
    height: 16px;
    color: #60a5fa;
    flex-shrink: 0;
}

.ent-auth-hero-footer {
    font-size: 0.72rem;
    color: #475569;
}

.ent-auth-form-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.04), transparent 60%),
        var(--ent-bg);
}

.ent-auth-card {
    width: 100%;
    max-width: 420px;
}

.ent-auth-card h1 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.ent-auth-subtitle {
    color: var(--ent-ink-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.ent-form-group {
    margin-bottom: 1rem;
}

.ent-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ent-ink);
    margin-bottom: 0.35rem;
}

.ent-form-input {
    width: 100%;
    height: 44px;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    padding: 0 0.85rem;
    font-size: 0.9rem;
    color: var(--ent-ink);
    background: var(--ent-surface);
    transition: all var(--ent-transition);
    font-family: inherit;
}

.ent-form-input:focus {
    outline: none;
    border-color: var(--ent-primary);
    box-shadow: 0 0 0 4px var(--ent-primary-soft);
}

.ent-form-input::placeholder {
    color: var(--ent-ink-muted);
}

.ent-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.ent-turnstile-wrap {
    margin-bottom: 1rem;
}

.ent-turnstile-wrap p {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: var(--ent-ink-secondary);
}

.ent-form-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--ent-ink-secondary);
    cursor: pointer;
}

.ent-form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ent-primary);
}

.ent-form-link {
    font-size: 0.82rem;
    color: var(--ent-primary);
    text-decoration: none;
    font-weight: 600;
}

.ent-form-link:hover {
    text-decoration: underline;
}

.ent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ent-transition);
    text-decoration: none;
    line-height: 1;
}

.ent-btn-primary {
    height: 44px;
    padding: 0 1.25rem;
    background: var(--ent-primary);
    color: #fff;
    font-size: 0.9rem;
}

.ent-btn-primary:hover:not(:disabled) {
    background: var(--ent-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.ent-btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.ent-btn-full {
    width: 100%;
}

.ent-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%),
                      linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem;
}

.ent-btn-ghost {
    height: 38px;
    padding: 0 0.85rem;
    background: transparent;
    border: 1px solid var(--ent-border);
    color: var(--ent-ink-secondary);
    font-size: 0.84rem;
}

.ent-btn-ghost:hover:not(:disabled) {
    background: var(--ent-surface-alt);
    color: var(--ent-ink);
}

.ent-btn-sm {
    height: 34px;
    padding: 0 0.7rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.ent-btn-icon {
    width: 34px;
    height: 34px;
    padding: 0;
}

.ent-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== DASHBOARD CONTENT ===== */

.ent-welcome-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.ent-welcome-text h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 0.2rem;
}

.ent-welcome-text p {
    color: var(--ent-ink-secondary);
    font-size: 0.88rem;
}

.ent-welcome-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ===== METRIC CARDS ===== */

.ent-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ent-metric-card {
    background: var(--ent-surface);
    border: 1px solid var(--ent-border);
    border-radius: var(--ent-radius);
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all var(--ent-transition);
    box-shadow: var(--ent-shadow-sm);
}

.ent-metric-card:hover {
    box-shadow: var(--ent-shadow-md);
    transform: translateY(-2px);
}

.ent-metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ent-metric-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ent-ink-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ent-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-metric-icon svg {
    width: 18px;
    height: 18px;
}

.ent-metric-icon.blue {
    background: var(--ent-primary-soft);
    color: var(--ent-primary);
}

.ent-metric-icon.purple {
    background: var(--ent-secondary-soft);
    color: var(--ent-secondary);
}

.ent-metric-icon.green {
    background: var(--ent-success-soft);
    color: var(--ent-success);
}

.ent-metric-icon.amber {
    background: var(--ent-warning-soft);
    color: var(--ent-warning);
}

.ent-metric-value {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ent-metric-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
}

.ent-metric-change {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
}

.ent-metric-change.up {
    color: var(--ent-success);
    background: var(--ent-success-soft);
}

.ent-metric-change.down {
    color: var(--ent-danger);
    background: var(--ent-danger-soft);
}

.ent-metric-change svg {
    width: 12px;
    height: 12px;
}

.ent-metric-period {
    color: var(--ent-ink-muted);
    font-weight: 500;
}

/* ===== CONTENT GRID ===== */

.ent-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ent-team-grid {
    grid-template-columns: 1fr 360px;
}

.ent-settings-grid {
    grid-template-columns: 1fr 360px;
}

.ent-team-note {
    font-size: 0.82rem;
    color: var(--ent-ink-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.45;
}

.ent-settings-form-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.ent-settings-upload-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.ent-settings-file-name {
    color: var(--ent-ink-secondary);
    font-size: 0.78rem;
    word-break: break-all;
}

.ent-settings-preview-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--ent-border);
    background: var(--ent-surface-alt);
    margin-bottom: 0.9rem;
}

.ent-settings-preview-logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--ent-surface);
    border: 1px solid var(--ent-border);
    flex-shrink: 0;
}

.ent-settings-preview-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ent-settings-preview-meta {
    min-width: 0;
}

.ent-settings-preview-company {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ent-ink);
    line-height: 1.25;
    word-break: break-word;
}

.ent-settings-preview-url {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--ent-ink-secondary);
    word-break: break-all;
}

.ent-role-select {
    min-width: 132px;
    height: 30px;
    border: 1px solid var(--ent-border);
    border-radius: 8px;
    background: var(--ent-surface);
    color: var(--ent-ink);
    padding: 0 0.55rem;
    font-size: 0.78rem;
    font-family: inherit;
}

.ent-role-select:focus {
    outline: none;
    border-color: var(--ent-primary);
    box-shadow: 0 0 0 3px var(--ent-primary-soft);
}

.ent-inline-actions {
    display: inline-flex;
    gap: 0.35rem;
}

/* ===== PANELS / CARDS ===== */

.ent-card {
    background: var(--ent-surface);
    border: 1px solid var(--ent-border);
    border-radius: var(--ent-radius-lg);
    box-shadow: var(--ent-shadow-sm);
    overflow: hidden;
}

.ent-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ent-border);
}

.ent-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ent-ink);
}

.ent-card-body {
    padding: 1.25rem;
}

.ent-card-body.no-pad {
    padding: 0;
}

/* ===== TABLE ===== */

.ent-table-wrap {
    overflow-x: auto;
}

.ent-table {
    width: 100%;
    border-collapse: collapse;
}

.ent-table th,
.ent-table td {
    padding: 0.7rem 1rem;
    text-align: left;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--ent-border-light);
}

.ent-table th {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ent-ink-secondary);
    background: var(--ent-surface-alt);
    position: sticky;
    top: 0;
    z-index: 2;
}

.ent-table tbody tr {
    transition: background var(--ent-transition);
}

.ent-table tbody tr:hover {
    background: var(--ent-surface-alt);
}

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

/* ===== CHIPS / BADGES ===== */

.ent-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.ent-chip-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.ent-chip-green {
    background: #dcfce7;
    color: #15803d;
}

.ent-chip-amber {
    background: #fef3c7;
    color: #92400e;
}

.ent-chip-red {
    background: #fee2e2;
    color: #991b1b;
}

.ent-chip-purple {
    background: #ede9fe;
    color: #6d28d9;
}

.ent-chip-gray {
    background: #f1f5f9;
    color: #475569;
}

/* ===== STUDENT ROW ===== */

.ent-student-cell {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.ent-student-row {
    cursor: pointer;
}

.ent-student-row:focus-visible {
    outline: 2px solid var(--ent-primary);
    outline-offset: -2px;
}

.ent-student-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ent-student-name {
    font-weight: 600;
    color: var(--ent-ink);
    font-size: 0.84rem;
}

.ent-student-email {
    font-size: 0.74rem;
    color: var(--ent-ink-muted);
}

.ent-student-profile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ent-student-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.ent-student-meta-item {
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    background: var(--ent-surface-alt);
    padding: 0.65rem 0.75rem;
}

.ent-student-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ent-ink-muted);
    font-weight: 700;
}

.ent-student-meta-value {
    margin-top: 0.15rem;
    font-size: 0.84rem;
    color: var(--ent-ink);
    font-weight: 600;
    line-height: 1.35;
}

.ent-journey-stage-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ent-journey-stage-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    align-items: flex-start;
    border: 1px solid var(--ent-border-light);
    border-radius: 10px;
    background: var(--ent-surface);
    padding: 0.6rem 0.7rem;
}

.ent-journey-stage-index {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--ent-primary-soft);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--ent-primary);
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-journey-stage-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ent-ink);
    line-height: 1.35;
}

.ent-journey-stage-desc {
    margin-top: 0.12rem;
    font-size: 0.77rem;
    color: var(--ent-ink-secondary);
    line-height: 1.45;
}

.ent-table-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ent-student-workspace-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.ent-student-profile-sidebar {
    position: sticky;
    top: 0.2rem;
}

.ent-student-profile-card {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.62rem 0.66rem;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    background: var(--ent-surface-alt);
}

.ent-student-profile-name {
    font-size: 0.86rem;
    color: var(--ent-ink);
    font-weight: 700;
    line-height: 1.3;
}

.ent-student-profile-meta {
    margin-top: 0.14rem;
    font-size: 0.75rem;
    color: var(--ent-ink-secondary);
    line-height: 1.35;
}

.ent-student-profile-option-title {
    margin-top: 0.82rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ent-ink-muted);
    font-weight: 700;
}

.ent-student-profile-option-list {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.45rem;
}

.ent-student-profile-option {
    width: 100%;
    border: 1px solid var(--ent-border-light);
    border-radius: 10px;
    background: var(--ent-surface);
    color: var(--ent-ink);
    text-align: left;
    padding: 0.56rem 0.62rem;
    cursor: pointer;
    transition: all var(--ent-transition);
}

.ent-student-profile-option:hover {
    border-color: #c7d2fe;
    background: #eef2ff;
}

.ent-student-profile-option.is-active {
    border-color: #a5b4fc;
    background: rgba(99, 102, 241, 0.12);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.08);
}

.ent-student-profile-option:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.ent-student-profile-option-label {
    display: block;
    font-size: 0.81rem;
    font-weight: 700;
    line-height: 1.35;
}

.ent-student-profile-option-desc {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.73rem;
    color: var(--ent-ink-secondary);
    line-height: 1.4;
}

.ent-student-profile-option-hint {
    margin-top: 0.58rem;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    background: var(--ent-surface-alt);
    color: var(--ent-ink-secondary);
    font-size: 0.74rem;
    line-height: 1.42;
    padding: 0.58rem 0.62rem;
}

.ent-student-workspace-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    margin-bottom: 0;
}

.ent-workspace-progress {
    margin-top: 0.95rem;
    margin-bottom: 1rem;
    padding: 0.72rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--ent-border);
    background: var(--ent-surface-alt);
}

.ent-workspace-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    color: var(--ent-ink-secondary);
}

.ent-workspace-progress-head strong {
    color: var(--ent-ink);
    font-size: 0.86rem;
}

.ent-stage-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.ent-stage-rail-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.58rem;
    align-items: flex-start;
    padding: 0.58rem 0.65rem;
    border: 1px solid var(--ent-border-light);
    border-radius: 10px;
    background: var(--ent-surface);
}

.ent-stage-rail-index {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ent-ink-secondary);
    background: #f1f5f9;
    border: 1px solid #dbe4f1;
}

.ent-stage-rail-item.is-done .ent-stage-rail-index {
    background: #dcfce7;
    border-color: #86efac;
    color: #15803d;
}

.ent-stage-rail-item.is-current .ent-stage-rail-index {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.ent-stage-rail-title {
    font-size: 0.8rem;
    color: var(--ent-ink);
    font-weight: 650;
    line-height: 1.35;
}

.ent-stage-rail-status {
    margin-top: 0.1rem;
    font-size: 0.72rem;
    color: var(--ent-ink-muted);
}

.ent-workspace-side-grid {
    grid-template-columns: 1fr;
}

.ent-workspace-current-stage {
    margin-top: 0.85rem;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    background: var(--ent-surface-alt);
    padding: 0.75rem 0.8rem;
}

.ent-workspace-current-stage h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ent-ink);
}

.ent-workspace-current-stage p {
    margin: 0.3rem 0 0;
    color: var(--ent-ink-secondary);
    font-size: 0.79rem;
    line-height: 1.45;
}

.ent-workspace-checklist-wrap {
    margin-top: 0.85rem;
}

.ent-workspace-checklist {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
    color: var(--ent-ink-secondary);
    display: grid;
    gap: 0.35rem;
}

.ent-workspace-checklist li {
    font-size: 0.79rem;
    line-height: 1.45;
}

/* ===== ACTIVITY LIST ===== */

.ent-activity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.ent-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--ent-border-light);
    transition: background var(--ent-transition);
}

.ent-activity-item:last-child {
    border-bottom: none;
}

.ent-activity-item:hover {
    background: var(--ent-surface-alt);
}

.ent-activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.ent-activity-dot.blue { background: var(--ent-primary); }
.ent-activity-dot.green { background: var(--ent-success); }
.ent-activity-dot.amber { background: var(--ent-warning); }
.ent-activity-dot.red { background: var(--ent-danger); }

.ent-activity-body {
    flex: 1;
    min-width: 0;
}

.ent-activity-text {
    font-size: 0.84rem;
    color: var(--ent-ink);
    line-height: 1.45;
}

.ent-activity-text strong {
    font-weight: 600;
}

.ent-activity-time {
    font-size: 0.72rem;
    color: var(--ent-ink-muted);
    margin-top: 0.2rem;
}

/* ===== PROGRESS BAR ===== */

.ent-progress-track {
    height: 6px;
    border-radius: 999px;
    background: var(--ent-surface-alt);
    overflow: hidden;
}

.ent-progress-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ent-progress-fill.blue { background: var(--ent-primary); }
.ent-progress-fill.green { background: var(--ent-success); }
.ent-progress-fill.amber { background: var(--ent-warning); }

/* ===== VISA STATUS BREAKDOWN ===== */

.ent-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ent-breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ent-breakdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ent-breakdown-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ent-ink-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ent-breakdown-label .ent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ent-breakdown-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ent-ink);
}

/* ===== QUICK ACTIONS ===== */

.ent-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.ent-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 0.75rem;
    border-radius: var(--ent-radius);
    border: 1px solid var(--ent-border);
    background: var(--ent-surface);
    cursor: pointer;
    transition: all var(--ent-transition);
    text-decoration: none;
    color: var(--ent-ink);
}

.ent-quick-action:hover {
    border-color: var(--ent-primary);
    background: var(--ent-primary-soft);
    transform: translateY(-2px);
    box-shadow: var(--ent-shadow-md);
}

.ent-quick-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-quick-action-icon svg {
    width: 20px;
    height: 20px;
}

.ent-quick-action span {
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

/* ===== EMPTY STATE ===== */

.ent-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    text-align: center;
}

.ent-empty svg {
    width: 48px;
    height: 48px;
    color: var(--ent-ink-muted);
    margin-bottom: 0.75rem;
}

.ent-empty h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.ent-empty p {
    font-size: 0.84rem;
    color: var(--ent-ink-muted);
    max-width: 320px;
}

.ent-students-note {
    font-size: 0.82rem;
    color: var(--ent-ink-secondary);
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--ent-border-light);
    background: var(--ent-surface-alt);
}

body.ent-no-scroll {
    overflow: hidden;
}

.ent-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 250;
}

.ent-modal-backdrop[hidden] {
    display: none !important;
}

.ent-modal {
    width: 100%;
    max-width: 540px;
    background: var(--ent-surface);
    border: 1px solid var(--ent-border);
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.55);
    overflow: hidden;
}

.ent-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.2rem;
    border-bottom: 1px solid var(--ent-border);
}

.ent-modal-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ent-ink);
}

.ent-modal-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--ent-border);
    border-radius: 9px;
    background: var(--ent-surface);
    color: var(--ent-ink-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ent-transition);
}

.ent-modal-close:hover {
    background: var(--ent-surface-alt);
    color: var(--ent-ink);
}

.ent-modal-close svg {
    width: 16px;
    height: 16px;
}

.ent-modal-body {
    padding: 1rem 1.2rem 1.2rem;
}

.ent-modal-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
}

/* ===== TOAST / FLASH ===== */

.ent-flash {
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ent-flash svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ent-flash.info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.ent-flash.success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.ent-flash.error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.ent-flash-link {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ent-flash-link:hover {
    opacity: 0.85;
}

/* ===== SECTION TABS ===== */

.ent-tabs {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid var(--ent-border);
    padding: 0 1.25rem;
}

.ent-tab {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ent-ink-muted);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--ent-transition);
    font-family: inherit;
}

.ent-tab:hover {
    color: var(--ent-ink);
}

.ent-tab.active {
    color: var(--ent-primary);
    border-bottom-color: var(--ent-primary);
}

/* ===== SEARCH BAR ===== */

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

.ent-search-wrap svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--ent-ink-muted);
    pointer-events: none;
}

.ent-search-input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--ent-border);
    border-radius: 10px;
    padding: 0 0.75rem 0 2.25rem;
    font-size: 0.84rem;
    color: var(--ent-ink);
    background: var(--ent-surface);
    transition: all var(--ent-transition);
    font-family: inherit;
}

.ent-search-input:focus {
    outline: none;
    border-color: var(--ent-primary);
    box-shadow: 0 0 0 4px var(--ent-primary-soft);
}

.ent-search-input::placeholder {
    color: var(--ent-ink-muted);
}

/* ===== PAGINATION ===== */

.ent-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--ent-border-light);
}

.ent-pagination-info {
    font-size: 0.8rem;
    color: var(--ent-ink-muted);
    margin-right: auto;
}

/* ===== SECTION VISIBILITY ===== */

.ent-section { display: none; }
.ent-section.active { display: block; }

/* ===== RESPONSIVE ===== */

/* Content grid → single column (sidebar eats 260px, so 1460 - 260 = 1200px content) */
@media (max-width: 1460px) {
    .ent-content-grid {
        grid-template-columns: 1fr;
    }

    .ent-student-workspace-shell {
        grid-template-columns: 1fr;
    }

    .ent-student-profile-sidebar {
        position: static;
    }
}

/* Metrics → 2 columns (1360 - 260 = 1100px content, 4 cards too tight) */
@media (max-width: 1360px) {
    .ent-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet / small laptop — collapse sidebar to mobile drawer */
@media (max-width: 1024px) {
    .ent-shell {
        grid-template-columns: 1fr;
    }

    .ent-header,
    .ent-main {
        grid-column: 1;
    }

    .ent-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: var(--ent-sidebar-w);
        height: 100vh;
        z-index: 100;
        box-shadow: 6px 0 24px rgba(0, 0, 0, 0.3);
    }

    .ent-sidebar.open {
        display: flex;
    }

    .ent-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 90;
    }

    .ent-sidebar-overlay.open {
        display: block;
    }

    .ent-mobile-toggle {
        display: flex;
    }

    .ent-main {
        padding: 1.25rem;
    }

    /* Without sidebar, full viewport → content grid can be 2-col again */
    .ent-content-grid {
        grid-template-columns: 1fr 340px;
    }

    /* Without sidebar, full viewport → 4 metric cols fit again */
    .ent-metrics-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Auth screen hero panel hides */
@media (max-width: 900px) {
    .ent-auth-screen {
        grid-template-columns: 1fr;
    }

    .ent-auth-hero {
        display: none;
    }
}

/* Narrower tablets */
@media (max-width: 768px) {
    .ent-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-content-grid {
        grid-template-columns: 1fr;
    }

    .ent-student-meta-grid {
        grid-template-columns: 1fr;
    }

    .ent-student-workspace-grid {
        grid-template-columns: 1fr;
    }
}

/* Phone */
@media (max-width: 600px) {
    .ent-metrics-row {
        grid-template-columns: 1fr;
    }

    .ent-welcome-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .ent-header {
        padding: 0 1rem;
    }

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

    .ent-quick-grid {
        grid-template-columns: 1fr;
    }

    .ent-main {
        padding: 1rem;
    }

    .ent-onboarding-title {
        font-size: 1.35rem;
    }

    .ent-onboarding-main {
        padding: 1.5rem 1rem 2rem;
    }

    .ent-onboarding-step-line {
        max-width: 28px;
    }

    .ent-modal {
        max-width: 100%;
    }

    .ent-modal-header,
    .ent-modal-body {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .ent-modal-actions {
        flex-direction: column-reverse;
    }

    .ent-modal-actions .ent-btn {
        width: 100%;
    }
}
