:root {
    --simrs-primary: #0f766e;
    --simrs-primary-dark: #0b5f59;
    --simrs-primary-soft: #ccfbf1;
    --simrs-accent: #0369a1;
    --simrs-ink: #0f172a;
    --simrs-muted: #64748b;
    --simrs-border: #e2e8f0;
    --simrs-surface: #ffffff;
    --simrs-canvas: #f1f5f9;
    --simrs-sidebar: #0b3d3a;
    --simrs-sidebar-2: #0f4c47;
    --simrs-sidebar-text: #d1fae5;
    --simrs-sidebar-muted: #99f6e4;
    --simrs-danger: #dc2626;
    --simrs-warning: #d97706;
    --simrs-success: #059669;
    --sidebar-width: 272px;
    --topbar-height: 64px;
    --radius: 14px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, .06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body.app-body {
    margin: 0;
    color: var(--simrs-ink);
    background:
        radial-gradient(1200px 500px at 100% -10%, rgba(15, 118, 110, .08), transparent 55%),
        radial-gradient(900px 400px at -10% 20%, rgba(3, 105, 161, .07), transparent 50%),
        var(--simrs-canvas);
    font-family: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
    font-size: 0.95rem;
}

h1, h2, h3, h4, h5, .topbar-title, .brand-text strong {
    font-family: "DM Sans", "IBM Plex Sans", sans-serif;
    letter-spacing: -0.02em;
}

/* ——— Shell ——— */
.app-shell {
    min-height: 100vh;
    display: flex;
}

.app-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(15, 118, 110, .18), transparent 30%),
        linear-gradient(165deg, var(--simrs-sidebar) 0%, #072e2c 55%, #041f1e 100%);
    color: var(--simrs-sidebar-text);
    border-right: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 8px 0 32px rgba(2, 20, 18, .18);
    transition: transform .25s ease;
}

.app-main {
    flex: 1;
    min-width: 0;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-topbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 1.25rem;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--simrs-border);
}

.app-content {
    padding: 1.25rem 1.25rem 2.5rem;
    flex: 1;
}

/* ——— Brand ——— */
.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1.1rem 1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #2dd4bf, #0f766e);
    color: #042f2e;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(45, 212, 191, .25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1.15rem;
    color: #fff;
}

.brand-text small {
    color: var(--simrs-sidebar-muted);
    font-size: .72rem;
    opacity: .9;
}

.sidebar-close {
    border: 0;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
}

/* ——— Sidebar nav ——— */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: .85rem .75rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
}

.nav-section-label {
    margin: .85rem .5rem .35rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(153, 246, 228, .55);
}

.app-sidebar .nav-link,
.nav-group-toggle {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .65rem .75rem;
    margin-bottom: .2rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(236, 253, 245, .88);
    text-decoration: none;
    font-weight: 500;
    text-align: left;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

/* Toggle ber-submenu: label kiri, chevron kanan */
.nav-group-toggle {
    justify-content: space-between;
}

/* Link langsung: ikon + teks tetap menyatu di kiri */
.app-sidebar .nav-link {
    justify-content: flex-start;
}

.app-sidebar .nav-link-main,
.nav-group-title {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
    flex: 1;
}

.app-sidebar .nav-link-main > span,
.nav-group-title > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-sidebar .nav-link i,
.nav-link-main i,
.nav-group-title i {
    width: 1.25rem;
    flex-shrink: 0;
    text-align: center;
    opacity: .9;
    font-size: 1.05rem;
}

.app-sidebar .nav-link:hover,
.nav-group-toggle:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.app-sidebar .nav-link.active {
    background: linear-gradient(90deg, rgba(45, 212, 191, .28), rgba(45, 212, 191, .08));
    color: #fff;
    box-shadow: inset 3px 0 0 #2dd4bf;
}

.nav-pill {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .65rem;
    padding: .1rem .4rem;
    border-radius: 999px;
    background: rgba(45, 212, 191, .25);
    color: #ecfdf5;
}

.nav-chevron {
    font-size: .75rem;
    flex-shrink: 0;
    transition: transform .2s ease;
    opacity: .7;
}

.nav-group-toggle:not(.collapsed) .nav-chevron {
    transform: rotate(180deg);
}

.nav-sub {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .15rem 0 .45rem .55rem;
    margin: 0 0 .35rem .85rem;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.nav-sublink {
    display: block;
    padding: .45rem .7rem;
    border-radius: 8px;
    color: rgba(204, 251, 241, .78);
    text-decoration: none;
    font-size: .9rem;
}

.nav-sublink:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.nav-sublink.active {
    background: rgba(45, 212, 191, .18);
    color: #fff;
    font-weight: 600;
}

.sidebar-footer {
    padding: .9rem .85rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .15);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .55rem;
}

.user-avatar,
.chip-avatar {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #5eead4, #0d9488);
    color: #042f2e;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: .9rem;
    line-height: 1.2;
}

.user-role {
    font-size: .72rem;
    color: var(--simrs-sidebar-muted);
}

.sidebar-unit {
    color: rgba(204, 251, 241, .7);
    margin-bottom: .65rem;
}

.btn-sidebar-logout {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: #ecfdf5;
    border-radius: 10px;
    padding: .45rem .75rem;
    font-size: .85rem;
}

.btn-sidebar-logout:hover {
    background: rgba(220, 38, 38, .2);
    border-color: rgba(248, 113, 113, .4);
    color: #fff;
}

/* ——— Topbar ——— */
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.topbar-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--simrs-ink);
    line-height: 1.2;
}

.topbar-crumb {
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.btn-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    border: 1px solid var(--simrs-border);
    background: #fff;
    display: inline-grid;
    place-items: center;
    color: var(--simrs-ink);
}

.topbar-chip {
    align-items: center;
    gap: .4rem;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--simrs-border);
    color: var(--simrs-muted);
    font-size: .8rem;
}

.btn-user-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--simrs-border);
    background: #fff;
    border-radius: 999px;
    padding: .25rem .7rem .25rem .3rem;
    font-weight: 500;
}

.chip-avatar {
    width: 1.85rem;
    height: 1.85rem;
    font-size: .75rem;
    border-radius: 50%;
}

/* ——— Content primitives ——— */
.page-header {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.15rem;
}

.page-header .h3,
.page-header h1 {
    font-weight: 700;
}

.card-panel {
    background: var(--simrs-surface);
    border: 1px solid var(--simrs-border);
    border-radius: var(--radius);
    padding: 1.1rem 1.15rem;
    box-shadow: var(--shadow-sm);
}

.stat-card,
.card-panel.text-center.border-start {
    position: relative;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

.stat-card:hover,
.card-panel.text-center.border-start:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.table thead th {
    white-space: nowrap;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--simrs-muted);
    background: #f8fafc !important;
    border-bottom-width: 1px;
}

.table > :not(caption) > * > * {
    padding: .7rem .75rem;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select,
.form-control,
.form-select {
    border-radius: 10px;
    border-color: #cbd5e1;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--simrs-primary);
    box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .15);
}

.btn {
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary {
    --bs-btn-bg: var(--simrs-primary);
    --bs-btn-border-color: var(--simrs-primary);
    --bs-btn-hover-bg: var(--simrs-primary-dark);
    --bs-btn-hover-border-color: var(--simrs-primary-dark);
    --bs-btn-active-bg: var(--simrs-primary-dark);
    --bs-btn-active-border-color: var(--simrs-primary-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--simrs-primary);
    --bs-btn-border-color: var(--simrs-primary);
    --bs-btn-hover-bg: var(--simrs-primary);
    --bs-btn-hover-border-color: var(--simrs-primary);
    --bs-btn-active-bg: var(--simrs-primary-dark);
    --bs-btn-active-border-color: var(--simrs-primary-dark);
}

.app-alert {
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
}

.badge {
    font-weight: 600;
    letter-spacing: .01em;
}

/* ——— Login ——— */
body.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
    font-family: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
    background:
        radial-gradient(900px 420px at 10% 10%, rgba(45, 212, 191, .22), transparent 55%),
        radial-gradient(800px 380px at 90% 80%, rgba(3, 105, 161, .16), transparent 50%),
        linear-gradient(160deg, #ecfeff 0%, #f8fafc 45%, #e0f2fe 100%);
}

.login-shell {
    width: min(960px, 100%);
    margin: 1.5rem auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .1);
    backdrop-filter: blur(10px);
}

.login-hero {
    padding: 2.5rem 2rem;
    background:
        linear-gradient(160deg, rgba(15, 118, 110, .95), rgba(7, 46, 44, .98)),
        #0b3d3a;
    color: #ecfdf5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.login-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: .78rem;
    width: fit-content;
}

.login-hero h1 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
    margin: 1.25rem 0 .75rem;
    letter-spacing: -0.03em;
}

.login-hero p {
    color: rgba(204, 251, 241, .85);
    margin-bottom: 0;
    max-width: 28ch;
}

.login-hero-meta {
    display: grid;
    gap: .55rem;
    margin-top: 2rem;
}

.login-hero-meta span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: rgba(236, 253, 245, .88);
}

.login-card {
    padding: 2.25rem 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card .brand-mini {
    color: var(--simrs-primary);
    font-weight: 700;
    font-size: 1.15rem;
    font-family: "DM Sans", sans-serif;
}

.login-captcha {
    display: grid;
    grid-template-columns: minmax(88px, auto) auto 1fr auto;
    gap: .5rem;
    align-items: center;
}

.login-captcha-question {
    min-height: 3rem;
    display: grid;
    place-items: center;
    padding: .5rem .75rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #ecfeff, #f0fdfa);
    border: 1px dashed #99f6e4;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--simrs-primary-dark);
    letter-spacing: .04em;
    user-select: none;
}

.login-captcha-eq {
    font-weight: 700;
    color: var(--simrs-muted);
    font-size: 1.15rem;
}

.login-captcha-input {
    min-width: 0;
}

.login-captcha-refresh {
    white-space: nowrap;
}

@keyframes captcha-spin {
    to { transform: rotate(360deg); }
}

.login-captcha-refresh .spin {
    display: inline-block;
    animation: captcha-spin .6s linear infinite;
}

@media (max-width: 420px) {
    .login-captcha {
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
            "q eq ans"
            "ref ref ref";
    }
    .login-captcha-question { grid-area: q; }
    .login-captcha-eq { grid-area: eq; }
    .login-captcha-input { grid-area: ans; }
    .login-captcha-refresh { grid-area: ref; width: 100%; }
}

/* ——— IGD ——— */
.igd-row-merah {
    background: rgba(220, 38, 38, 0.1) !important;
    animation: igd-merah-flash 1.6s ease-in-out infinite;
}

@keyframes igd-merah-flash {
    0%, 100% { background: rgba(220, 38, 38, 0.07); }
    50% { background: rgba(220, 38, 38, 0.18); }
}

.igd-dot-pulse {
    display: inline-block;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--simrs-danger);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
    animation: igd-pulse 1.2s infinite;
    vertical-align: middle;
}

@keyframes igd-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.igd-step {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
    color: var(--simrs-muted);
}

.igd-step-done {
    color: var(--simrs-success);
    font-weight: 600;
}

.igd-step-dot {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: .7rem;
}

.igd-triase-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .8rem;
    border: 1px solid var(--simrs-border);
    border-radius: 12px;
    cursor: pointer;
    margin: 0;
    transition: border-color .15s ease, background .15s ease;
}

.igd-triase-option:has(input:checked) {
    border-width: 2px;
    font-weight: 600;
}

.igd-triase-merah:has(input:checked) { border-color: #dc2626; background: rgba(220, 38, 38, .08); }
.igd-triase-kuning:has(input:checked) { border-color: #d97706; background: rgba(217, 119, 6, .1); }
.igd-triase-hijau:has(input:checked) { border-color: #059669; background: rgba(5, 150, 105, .08); }
.igd-triase-hitam:has(input:checked) { border-color: #0f172a; background: rgba(15, 23, 42, .06); }

/* ——— Responsive sidebar ——— */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1035;
    background: rgba(2, 20, 18, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.app-shell.sidebar-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        transform: translateX(-105%);
    }

    .app-shell.sidebar-open .app-sidebar {
        transform: translateX(0);
    }

    .app-main {
        margin-left: 0;
    }

    .app-content {
        padding: 1rem .9rem 2rem;
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .login-hero {
        min-height: auto;
        padding: 1.75rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .sidebar-backdrop {
        display: none !important;
    }
}

/* ——— Global loader ——— */
.simrs-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: rgba(4, 31, 30, .45);
    backdrop-filter: blur(4px);
}

.simrs-loader[hidden] {
    display: none !important;
}

.simrs-loader-card {
    min-width: 220px;
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(2, 20, 18, .25);
    animation: simrs-pop .22s ease-out;
}

.simrs-spinner {
    width: 2.6rem;
    height: 2.6rem;
    margin: 0 auto .85rem;
    border-radius: 50%;
    border: 3px solid #ccfbf1;
    border-top-color: var(--simrs-primary);
    animation: captcha-spin .7s linear infinite;
}

.simrs-loader-text {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: var(--simrs-ink);
}

.simrs-loader-sub {
    font-size: .8rem;
    color: var(--simrs-muted);
    margin-top: .2rem;
}

html.simrs-loading,
html.simrs-loading body {
    cursor: progress;
}

/* ——— Toast ——— */
.simrs-toast-stack {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    width: min(380px, calc(100vw - 1.5rem));
    pointer-events: none;
}

.simrs-toast {
    pointer-events: auto;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .75rem;
    align-items: start;
    padding: .95rem 1rem 1.05rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--simrs-border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
    overflow: hidden;
    opacity: 0;
    transform: translateX(18px) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
}

.simrs-toast.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.simrs-toast.hide {
    opacity: 0;
    transform: translateX(18px) scale(.98);
}

.simrs-toast-icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
}

.simrs-toast-title {
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    font-size: .95rem;
    line-height: 1.2;
}

.simrs-toast-msg {
    font-size: .86rem;
    color: var(--simrs-muted);
    margin-top: .15rem;
    line-height: 1.4;
}

.simrs-toast-close {
    border: 0;
    background: transparent;
    color: #94a3b8;
    padding: .15rem;
    line-height: 1;
}

.simrs-toast-close:hover {
    color: var(--simrs-ink);
}

.simrs-toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    transform-origin: left center;
    animation: simrs-toast-progress linear forwards;
}

.simrs-toast-success {
    border-color: #a7f3d0;
}
.simrs-toast-success .simrs-toast-icon {
    background: #ecfdf5;
    color: #059669;
}
.simrs-toast-success .simrs-toast-progress { background: #10b981; }

.simrs-toast-error {
    border-color: #fecaca;
}
.simrs-toast-error .simrs-toast-icon {
    background: #fef2f2;
    color: #dc2626;
}
.simrs-toast-error .simrs-toast-progress { background: #ef4444; }

.simrs-toast-warning {
    border-color: #fde68a;
}
.simrs-toast-warning .simrs-toast-icon {
    background: #fffbeb;
    color: #d97706;
}
.simrs-toast-warning .simrs-toast-progress { background: #f59e0b; }

.simrs-toast-info {
    border-color: #bae6fd;
}
.simrs-toast-info .simrs-toast-icon {
    background: #f0f9ff;
    color: #0284c7;
}
.simrs-toast-info .simrs-toast-progress { background: #0ea5e9; }

@keyframes simrs-toast-progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@keyframes simrs-pop {
    from { opacity: 0; transform: translateY(8px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ——— Confirm modal ——— */
.simrs-confirm-modal {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

.simrs-confirm-icon {
    width: 3.4rem;
    height: 3.4rem;
    margin: 0 auto 1rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.simrs-confirm-icon.danger {
    background: #fef2f2;
    color: #dc2626;
}

.simrs-confirm-icon.primary {
    background: #ecfeff;
    color: #0f766e;
}

.simrs-confirm-icon.warning {
    background: #fffbeb;
    color: #d97706;
}

@media (max-width: 575.98px) {
    .simrs-toast-stack {
        top: auto;
        bottom: 1rem;
        right: .75rem;
        left: .75rem;
        width: auto;
    }
}
