/* SACCFQHS 試點租戶主題 — 覆寫 css.css 變數 */
:root {
    --app-banner-bg: #0f2744;
    --app-banner-text: #f8fafc;
    --app-accent: #c9a227;
    --app-accent-hover: #b08d1f;
    --app-bg: #eef2f7;
    --text-main: #0f2744;
}

.school-banner-overlay h2 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
}

.school-banner-overlay p {
    margin: 6px 0 0;
    font-size: 0.875rem;
    opacity: 0.88;
}

.info-blue-box {
    background: rgba(15, 39, 68, 0.06);
    border-left: 4px solid var(--app-banner-bg);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 15px;
}

.warning-yellow-box {
    background: #fef3c7;
    border-left: 4px solid #d97706;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    color: #92400e;
    margin-bottom: 15px;
}

.error-red-box {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    color: #991b1b;
    margin-bottom: 15px;
}

.app-footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    background-color: var(--app-bg);
}

/* 靜態原型：banner 內嵌於 header */
.lrs-header-with-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.lrs-header-with-banner .banner-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 18px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.lrs-shell-header-banner {
    width: 100%;
    height: clamp(100px, 16vw, 160px);
    background-size: cover;
    background-position: center center;
    position: relative;
}

.lrs-shell-header-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 39, 68, 0.15) 0%,
        rgba(15, 39, 68, 0.55) 100%
    );
}
