:root {
    --idp-ink: #17324d;
    --idp-accent: #0b6e75;
    --idp-focus: #ffbf47;
}

body {
    color: var(--idp-ink);
    min-height: 100vh;
}

.app-header {
    box-shadow: 0 1px 0 rgb(23 50 77 / 4%);
}

.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.app-brand-mark {
    align-items: center;
    background: var(--idp-accent);
    border-radius: 0.65rem;
    color: #fff;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 700;
    height: 2.75rem;
    justify-content: center;
    letter-spacing: 0.04em;
    width: 2.75rem;
}

.app-account {
    flex-wrap: nowrap;
    width: 100%;
}

.app-account-identity {
    min-width: 0;
    overflow-wrap: anywhere;
}

.nav-underline .nav-link {
    color: #40566b;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
}

.nav-underline .nav-link.active {
    color: var(--idp-accent);
}

.nav-underline {
    gap: 1.5rem;
    scrollbar-width: thin;
}

.status-icon {
    align-items: center;
    background: #d9f2ed;
    border-radius: 50%;
    color: #08745f;
    display: inline-flex;
    font-size: 1.25rem;
    font-weight: 700;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.skip-link {
    background: #fff;
    border: 3px solid var(--idp-focus);
    color: #111;
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    transform: translateY(-150%);
    transition: transform 0.15s ease;
    z-index: 1100;
}

.skip-link:focus {
    transform: translateY(1rem);
}

:focus-visible {
    outline: 3px solid var(--idp-focus);
    outline-offset: 3px;
}

.review-source-frame {
    height: 70vh;
    min-height: 32rem;
    width: 100%;
}

.review-edit-table {
    min-width: 78rem;
}

@media (min-width: 1200px) {
    .review-source-card {
        position: sticky;
        top: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skip-link {
        transition: none;
    }
}

@media (min-width: 768px) {
    .app-account {
        width: auto;
    }
}
