/* Dashboard / Index page only (scoped) */

:root {
    --page: #eef2f5;
    --panel: #ffffff;
    --line: #c8d4de;
    --soft: #dbe6ee;
    --text: #1e3c52;
    --muted: #5e7d92;
    --header1: #49c7eb;
    --header2: #159fcb;
    --navy: #273a86;
    --navy-2: #20316f;
    --aqua: #43d3ef;
    --aqua-2: #8cefff;
    --teal: #2fc2e5;
    --shadow: 0 16px 34px rgba(18,56,92,.12);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --maxw: 1180px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Segoe UI, Tahoma, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f4f7fa 0%, #edf2f6 100%);
}

.page {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

    .page::before {
        content: "";
        position: absolute;
        left: -10%;
        right: -8%;
        bottom: -120px;
        height: 420px;
        background: radial-gradient(70% 120% at 18% 35%, rgba(67,211,239,.95), transparent 46%), radial-gradient(70% 120% at 38% 48%, rgba(45,135,231,.95), transparent 44%), radial-gradient(78% 120% at 58% 64%, rgba(33,58,134,.98), transparent 46%), radial-gradient(64% 120% at 76% 52%, rgba(67,211,239,.94), transparent 38%);
        opacity: .98;
        pointer-events: none;
        z-index: 0;
    }

    .page::after {
        content: "";
        position: absolute;
        right: -10%;
        top: 90px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(67,211,239,.22), transparent 64%);
        pointer-events: none;
        z-index: 0;
    }

.shell {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 26px 24px 60px;
}

.masthead {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    margin-bottom: 26px;
}

.logo-left img,
.logo-right img {
    display: block;
    max-height: 74px;
    width: auto;
}

.brand-center {
    text-align: center;
    padding-top: 8px;
}

    .brand-center .site {
        color: #3a90ad;
        font-weight: 700;
        text-decoration: underline;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .brand-center .meta {
        color: #2f4c61;
        font-size: .96rem;
        line-height: 1.35;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 46px;
    align-items: start;
    padding: 18px 24px 0;
}

.module {
    width: 100%;
}

.module-head {
    height: 42px;
    border-radius: 0 0 0 0;
    background: linear-gradient(180deg, var(--header1), var(--header2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.12rem;
    font-weight: 700;
    border-radius: 2px 2px 0 0;
    box-shadow: var(--shadow);
    text-shadow: 0 1px 0 rgba(0,0,0,.18);
}

    .module-head .ico {
        display: inline-grid;
        place-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        font-size: .95rem;
        line-height: 1;
    }

.module-body {
    background: rgba(222,232,239,.95);
    border-top: 1px solid rgba(255,255,255,.5);
    box-shadow: var(--shadow);
    padding: 16px 18px 18px;
    min-height: 140px;
}

    .module-body.compact {
        min-height: 112px
    }

    .module-body.tall {
        min-height: 192px
    }

.link-list a{
  color:#274f6b;
  text-decoration:none;
  font-size:1.12rem;
  line-height:1.28;
  font-weight:500;
}

.link-list a:hover{
  color:#123f59;
  text-decoration:underline;
}

.muted a{
  color:#8d9ba6;
  pointer-events:none;
  cursor:default;
  text-decoration:none;
  font-size:1.12rem;
  font-weight:500;
}

        .link-list a:hover {
            color: #124f6d;
            text-decoration: underline;
        }

.muted a {
    color: #9eacb7;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.lower-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 46px;
    padding: 18px 24px 0;
    align-items: start;
}

.spacer {
    min-height: 1px
}

.status-card {
    width: 100%;
    margin-top: 22px;
    background: linear-gradient(180deg, #53d7ef, #27bddd);
    color: #09283b;
    padding: 12px 14px;
    box-shadow: var(--shadow);
    font-size: .92rem;
    line-height: 1.45;
    font-weight: 600;
}

    .status-card strong {
        color: #001a28;
    }

    .status-card .line {
        display: block;
    }

@media (max-width:980px) {
    .grid,
    .lower-row {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-left: 0;
        padding-right: 0;
    }

    .masthead {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .brand-center {
        padding-top: 0
    }

    .status-card {
        margin-top: 16px
    }
}
