:root {
    --sentinel-bg-top: #06152d;
    --sentinel-bg-mid: #0b2245;
    --sentinel-bg-bottom: #0f3b82;
    --sentinel-glow-core: rgba(59, 130, 246, 0.34);
    --sentinel-glow-edge: rgba(96, 165, 250, 0.14);
    --sentinel-panel: rgba(8, 20, 43, 0.72);
    --sentinel-panel-strong: rgba(9, 22, 46, 0.82);
    --sentinel-panel-border: rgba(147, 197, 253, 0.18);
    --sentinel-panel-border-strong: rgba(147, 197, 253, 0.28);
    --sentinel-text: #f8fafc;
    --sentinel-text-muted: #bfdbfe;
    --sentinel-text-soft: rgba(219, 234, 254, 0.76);
    --sentinel-accent: #3b82f6;
    --sentinel-accent-strong: #1d4ed8;
    --sentinel-input: rgba(15, 23, 42, 0.68);
    --sentinel-shadow: 0 32px 80px rgba(2, 6, 23, 0.45);
    --sentinel-shadow-card: 0 22px 52px rgba(2, 6, 23, 0.34);
    --sentinel-radius-lg: 28px;
    --sentinel-radius-md: 22px;
    --sentinel-radius-sm: 16px;
}

html,
body,
.reg-wrapper {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background:
        radial-gradient(circle at 50% 0%, var(--sentinel-glow-core), transparent 32%),
        radial-gradient(circle at 85% 18%, var(--sentinel-glow-edge), transparent 24%),
        linear-gradient(160deg, var(--sentinel-bg-top) 0%, var(--sentinel-bg-mid) 45%, var(--sentinel-bg-bottom) 100%);
    color: var(--sentinel-text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 140px 140px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
    opacity: 0.28;
}

.reg-wrapper {
    min-height: 100vh;
    padding: 40px 24px;
}

.reg-wrapper > div[ng-app="bahmni.home"] {
    width: 100%;
    position: relative;
    z-index: 1;
}

#view-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.clint-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.implementor-logo {
    width: min(360px, 80vw);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(2, 6, 23, 0.35));
}

.title_text {
    color: var(--sentinel-text);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-align: center;
    text-transform: uppercase;
}

.login,
.sentinel-surface,
.sentinel-panel,
.sentinel-app-card {
    border: 1px solid var(--sentinel-panel-border);
    box-shadow: var(--sentinel-shadow);
}

.login {
    width: min(460px, 100%);
    background: var(--sentinel-panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    overflow: hidden;
}

.emr-login-text {
    padding: 28px 32px 8px;
    color: var(--sentinel-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
}

.reg-header {
    background: transparent;
    color: var(--sentinel-text);
    border-bottom: 1px solid rgba(147, 197, 253, 0.14);
    padding: 18px 32px;
}

.reg-header .left,
.reg-header .right,
.reg-header div,
.reg-header span,
.reg-header a,
.reg-header li {
    color: var(--sentinel-text);
}

.locale-wrapper,
.sentinel-change-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.locale-text {
    color: var(--sentinel-text-muted);
}

.login-body {
    padding: 24px 32px 32px;
}

.field-attribute label,
.warning-message,
.warning-message p {
    color: var(--sentinel-text);
}

.field-value input,
.field-value select,
.sentinel-change-location select,
.locale-wrapper select {
    width: 100%;
    min-height: 48px;
    background: var(--sentinel-input);
    border: 1px solid rgba(147, 197, 253, 0.18);
    border-radius: 14px;
    color: var(--sentinel-text);
    padding: 0 14px;
}

.field-value input::placeholder {
    color: rgba(191, 219, 254, 0.68);
}

.form-footer .confirm,
.otp-button {
    background: linear-gradient(180deg, var(--sentinel-accent) 0%, var(--sentinel-accent-strong) 100%);
    border: 0;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-height: 48px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.form-footer .confirm:hover,
.otp-button:hover {
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.32);
    transform: translateY(-1px);
}

.note.error {
    background: rgba(127, 29, 29, 0.4);
    border: 1px solid rgba(252, 165, 165, 0.35);
    color: #fee2e2;
    border-radius: 14px;
}

.power-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--sentinel-text-muted);
    font-size: 13px;
}

.power-by a {
    color: #dbeafe;
    text-decoration: none;
}

.sentinel-login-page {
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sentinel-login-page::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(920px, 78vw);
    height: min(620px, 70vh);
    transform: translate(-50%, -52%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 74%);
    filter: blur(22px);
    opacity: 0.95;
}

.sentinel-login-container {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sentinel-login-brand,
.sentinel-login-card {
    background: var(--sentinel-panel);
    border: 1px solid var(--sentinel-panel-border);
    box-shadow: var(--sentinel-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

.sentinel-login-brand::before,
.sentinel-login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 30%, transparent 74%, rgba(96, 165, 250, 0.1));
}

.sentinel-login-brand::after,
.sentinel-login-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.34), rgba(59, 130, 246, 0) 28%);
}

.sentinel-login-brand {
    border-radius: var(--sentinel-radius-lg);
    padding: 40px 36px;
    display: grid;
    gap: 22px;
    align-content: center;
    min-height: 540px;
}

.sentinel-login-logo {
    width: min(280px, 72%);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(2, 6, 23, 0.35));
    position: relative;
    z-index: 1;
}

.sentinel-login-brand-copy {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.sentinel-login-brand-description {
    margin: 6px 0 0;
    max-width: 26ch;
    color: var(--sentinel-text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.sentinel-login-card {
    border-radius: var(--sentinel-radius-lg);
    padding: 30px;
    display: grid;
    gap: 26px;
}

.sentinel-login-card-head,
.sentinel-login-form,
.sentinel-login-warning,
.sentinel-login-bottom-logos,
.sentinel-login-footer {
    position: relative;
    z-index: 1;
}

.sentinel-login-card-head {
    display: grid;
    gap: 20px;
}

.sentinel-login-card-head h1 {
    margin: 8px 0 0;
    color: var(--sentinel-text);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.sentinel-login-card-head p {
    margin: 10px 0 0;
    color: var(--sentinel-text-soft);
    line-height: 1.6;
}

.sentinel-login-locale {
    display: grid;
    gap: 8px;
}

.sentinel-login-locale select,
.sentinel-form-field input,
.sentinel-form-field select {
    width: 100%;
    min-height: 54px;
    background: var(--sentinel-input);
    border: 1px solid rgba(147, 197, 253, 0.18);
    border-radius: 14px;
    color: var(--sentinel-text);
    padding: 0 16px;
    box-sizing: border-box;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.sentinel-login-locale select:focus,
.sentinel-form-field input:focus,
.sentinel-form-field select:focus {
    outline: none;
    border-color: rgba(147, 197, 253, 0.42);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
    background: rgba(15, 23, 42, 0.82);
}

.sentinel-form-field input::placeholder {
    color: rgba(191, 219, 254, 0.68);
}

.sentinel-login-form {
    display: grid;
    gap: 18px;
}

.sentinel-login-alerts {
    display: grid;
    gap: 12px;
}

.sentinel-form-field {
    display: grid;
    gap: 8px;
}

.sentinel-form-field label {
    color: var(--sentinel-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sentinel-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 6px;
}

.sentinel-form-actions-split {
    justify-content: space-between;
}

.sentinel-primary-action,
.sentinel-secondary-action {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.sentinel-primary-action {
    min-width: 180px;
}

.sentinel-secondary-action {
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(147, 197, 253, 0.22);
    color: var(--sentinel-text);
}

.sentinel-secondary-action:hover {
    transform: translateY(-1px);
    border-color: rgba(147, 197, 253, 0.36);
    box-shadow: 0 16px 28px rgba(2, 6, 23, 0.2);
}

.sentinel-login-warning {
    width: min(520px, 100%);
    margin: 0 auto;
    text-align: center;
}

.sentinel-login-warning span,
.sentinel-login-warning p {
    display: block;
}

.sentinel-login-bottom-logos {
    display: flex;
    justify-content: center;
}

.sentinel-login-footer {
    width: 100%;
}

.sentinel-dashboard {
    width: min(1240px, 100%);
    position: relative;
}

.sentinel-dashboard::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: min(780px, 72vw);
    height: 360px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.22) 0%, rgba(59, 130, 246, 0.10) 38%, transparent 72%);
    filter: blur(18px);
    opacity: 0.95;
}

.sentinel-surface {
    background: var(--sentinel-panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sentinel-dashboard-shell {
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.sentinel-topbar {
    width: 100%;
    margin: 0 0 4px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-radius: var(--sentinel-radius-md);
    padding: 22px 26px;
}

.sentinel-topbar-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
}

.sentinel-brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sentinel-topbar-logo {
    width: 116px;
    height: auto;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 18px 36px rgba(2, 6, 23, 0.28));
}

.sentinel-brand-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sentinel-wordmark {
    color: var(--sentinel-text);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

.sentinel-shell-badge,
.sentinel-section-kicker,
.sentinel-app-tag,
.sentinel-control-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sentinel-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.sentinel-topbar-copy h1,
.sentinel-dashboard-copy h2,
.sentinel-modules-header h3 {
    margin: 0;
    color: var(--sentinel-text);
    font-weight: 700;
    line-height: 1.1;
}

.sentinel-topbar-copy h1 {
    font-size: clamp(30px, 3.2vw, 42px);
    letter-spacing: -0.03em;
}

.sentinel-topbar-copy p,
.sentinel-dashboard-copy p,
.sentinel-modules-header p,
.sentinel-app-description {
    margin: 0;
    color: var(--sentinel-text-soft);
    line-height: 1.6;
}

.sentinel-topbar-copy {
    display: grid;
    gap: 12px;
}

.sentinel-topbar-controls {
    float: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-left: auto;
    position: relative;
}

.sentinel-topbar-controls .sentinel-change-location {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sentinel-topbar-controls .sentinel-change-location select {
    min-width: 230px;
}

.sentinel-topbar .sentinel-user-trigger {
    min-width: 52px;
    min-height: 52px;
    background: var(--sentinel-panel-strong);
    border: 1px solid var(--sentinel-panel-border);
    border-radius: 16px;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sentinel-topbar .sentinel-user-trigger:hover {
    border-color: var(--sentinel-panel-border-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(2, 6, 23, 0.26);
}

.sentinel-topbar ul {
    background: var(--sentinel-panel-strong);
    border: 1px solid var(--sentinel-panel-border);
    border-radius: 18px;
    overflow: hidden;
}

.sentinel-topbar-controls > ul {
    right: 0;
    left: auto;
    top: calc(100% + 10px);
}

.sentinel-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--sentinel-radius-lg);
}

.sentinel-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 28%, transparent 72%, rgba(96, 165, 250, 0.10));
}

.sentinel-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.34), rgba(59, 130, 246, 0) 28%);
    height: 1px;
    opacity: 0.9;
}

.sentinel-dashboard-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.9fr);
    gap: 18px;
    padding: 28px;
}

.sentinel-dashboard-copy,
.sentinel-dashboard-context,
.sentinel-modules-header,
.sentinel-app-card {
    position: relative;
    z-index: 1;
}

.sentinel-dashboard-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
}

.sentinel-dashboard-copy h2 {
    font-size: clamp(34px, 4.2vw, 54px);
    letter-spacing: -0.03em;
    max-width: 13ch;
}

.sentinel-overview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.sentinel-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(147, 197, 253, 0.22);
    border-radius: 999px;
    color: var(--sentinel-text);
    font-size: 13px;
    font-weight: 600;
}

.sentinel-dashboard-context {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border-radius: var(--sentinel-radius-md);
    box-shadow: var(--sentinel-shadow-card);
    background: rgba(9, 22, 46, 0.74);
}

.sentinel-context-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(147, 197, 253, 0.14);
}

.sentinel-context-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sentinel-context-label {
    color: var(--sentinel-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sentinel-context-value {
    color: var(--sentinel-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.sentinel-modules-panel {
    padding: 26px 28px 28px;
}

.sentinel-modules-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.sentinel-modules-header h3 {
    margin-top: 8px;
    font-size: clamp(26px, 3vw, 34px);
}

.sentinel-modules-summary {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    text-align: right;
}

.sentinel-modules-count {
    color: var(--sentinel-text);
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.sentinel-modules-summary-copy {
    color: var(--sentinel-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sentinel-apps ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.sentinel-apps li {
    margin: 0;
}

.sentinel-app-card {
    position: relative;
    min-height: 252px;
    background:
        linear-gradient(180deg, rgba(15, 36, 74, 0.84), rgba(9, 22, 46, 0.96)),
        linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 62%);
    border: 1px solid rgba(147, 197, 253, 0.16);
    border-radius: var(--sentinel-radius-md);
    color: var(--sentinel-text);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 20px;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    box-shadow: var(--sentinel-shadow-card);
}

.sentinel-app-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.34), rgba(59, 130, 246, 0));
    height: 1px;
    opacity: 0.9;
}

.sentinel-app-card:hover,
.sentinel-app-card:focus {
    transform: translateY(-6px);
    border-color: rgba(147, 197, 253, 0.34);
    box-shadow: 0 32px 64px rgba(2, 6, 23, 0.40), 0 0 0 1px rgba(59, 130, 246, 0.08), 0 0 34px rgba(59, 130, 246, 0.12);
    background:
        linear-gradient(180deg, rgba(19, 45, 90, 0.94), rgba(9, 22, 46, 0.98)),
        linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent 62%);
}

.sentinel-app-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sentinel-app-card-body {
    display: grid;
    gap: 12px;
}

.sentinel-app-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(147, 197, 253, 0.18);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
}

.sentinel-app-card i {
    color: #93c5fd;
    font-size: 22px;
}

.sentinel-app-title {
    display: block;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sentinel-app-description {
    display: block;
    min-height: 88px;
    font-size: 14px;
}

.sentinel-app-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(147, 197, 253, 0.12);
    color: var(--sentinel-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sentinel-app-action i {
    font-size: 14px;
    transition: transform 0.18s ease;
}

.sentinel-app-card:hover .sentinel-app-action i,
.sentinel-app-card:focus .sentinel-app-action i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .sentinel-login-container {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .sentinel-login-brand {
        min-height: 0;
        padding: 32px 30px;
    }

    .sentinel-topbar,
    .sentinel-dashboard-overview {
        grid-template-columns: 1fr;
        display: grid;
    }

    .sentinel-topbar-controls {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .sentinel-brand-lockup {
        align-items: flex-start;
    }

    .sentinel-modules-header {
        flex-direction: column;
    }

    .sentinel-modules-summary {
        min-width: 0;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .reg-wrapper {
        padding: 24px 16px;
    }

    .sentinel-login-page {
        min-height: auto;
    }

    .sentinel-login-container {
        gap: 18px;
    }

    .sentinel-login-brand,
    .sentinel-login-card {
        border-radius: 20px;
    }

    .sentinel-login-brand,
    .sentinel-login-card {
        padding: 22px 20px;
    }

    .sentinel-login-logo {
        width: min(220px, 66vw);
    }

    .sentinel-login-brand-description {
        max-width: none;
        font-size: 16px;
    }

    .sentinel-login-card-head h1 {
        font-size: 28px;
    }

    .sentinel-form-actions,
    .sentinel-form-actions-split {
        flex-direction: column;
        justify-content: stretch;
    }

    .sentinel-primary-action,
    .sentinel-secondary-action {
        width: 100%;
    }

    .login,
    .sentinel-topbar,
    .sentinel-panel,
    .sentinel-app-card {
        border-radius: 20px;
    }

    .reg-header,
    .login-body,
    .emr-login-text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sentinel-topbar,
    .sentinel-dashboard-overview,
    .sentinel-modules-panel {
        padding: 20px;
    }

    .sentinel-brand-lockup {
        flex-direction: column;
        gap: 14px;
    }

    .sentinel-topbar-logo {
        width: 96px;
    }

    .sentinel-wordmark {
        font-size: 21px;
        letter-spacing: 0.2em;
    }

    .sentinel-topbar-copy h1 {
        font-size: 28px;
    }

    .sentinel-topbar-controls,
    .sentinel-topbar-controls .sentinel-change-location {
        width: 100%;
    }

    .sentinel-topbar-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .sentinel-topbar-controls .sentinel-change-location select,
    .sentinel-topbar .sentinel-user-trigger {
        width: 100%;
    }

    .sentinel-topbar .sentinel-user-trigger {
        justify-content: center;
    }

    .sentinel-dashboard-copy h2 {
        font-size: 30px;
        max-width: none;
    }

    .sentinel-modules-header {
        margin-bottom: 20px;
    }

    .sentinel-app-description {
        min-height: 0;
    }

    .sentinel-app-card {
        min-height: 0;
    }

    .title_text,
    .sentinel-wordmark,
    .sentinel-section-kicker,
    .sentinel-shell-badge,
    .emr-login-text {
        letter-spacing: 0.12em;
    }

    .power-by {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
