/* =====================================================
   VIANHAKU.FI — layout
===================================================== */

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #d9dee5;
    color: #1f2937;
}

/* =====================================================
   Yläpalkki
===================================================== */

.nav {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: #111820;
    border-bottom: 4px solid #b91c1c;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.brand img {
    width: 46px;
    height: 34px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-subtitle {
    margin-top: 3px;
    color: #aeb8c4;
    font-size: 10px;
    font-weight: 600;
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 11px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.nav a:hover {
    background: #24303d;
    border-color: #344252;
    color: white;
}

.user-email {
    margin: 0 8px;
    color: #9ca3af;
    font-size: 12px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* =====================================================
   Sovelluksen työtila
===================================================== */

.content {
    width: 100%;
    min-height: calc(100vh - 68px);
    padding: 18px;
    background: #e5e9ef;
}

/* =====================================================
   Sivujen otsikot
===================================================== */

.top,
.header,
.account-top,
.doc-header {
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #2f3f52;
    border: 1px solid #263443;
    color: white;
}

.top h1,
.header h1,
.account-top h1,
.doc-header h1 {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.top-subtitle,
.header p,
.account-top p,
.doc-subtitle {
    margin: 5px 0 0;
    color: #d5dce5;
    font-size: 14px;
    line-height: 1.5;
}

/* =====================================================
   Mobiili
===================================================== */

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .brand {
        width: 100%;
        margin-bottom: 4px;
    }

    .content {
        padding: 10px;
    }
}

@media (max-width: 640px) {
    .nav-right {
        display: none;
    }

    .nav a {
        min-height: 34px;
        padding: 0 8px;
        font-size: 12px;
    }
}
