/* NPDO base design tokens and global element defaults.
 * Keep this file app-agnostic; app-specific layout belongs in each app CSS file.
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #0f172a;
    background: #eef2f6;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.npdo-body {
    min-height: 100vh;
}

.npdo-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.npdo-main {
    flex: 1;
    min-width: 0;
}

.is-hidden {
    display: none !important;
}

.npdo-header__logo-link {
    display: inline-flex;
}

.npdo-header__logo {
    max-width: 100%;
    display: block;
}