/* ==========================================================================
   PeakLab Help System Stylesheet (Prism_v3_Updated)
   Synchronized with Gemini3.css Banner & Navigation Styles
   ========================================================================== */

:root {
    --primary-blue: #0056b3;
    --accent-blue: #0080ff;
    --text-dark: #222222;
    --bg-light: #f8f9fa;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 20px 40px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

/* --- NEW: Banner Base (Headline) --- */
.BannerBase {
    font-family: "Segoe UI", sans-serif;
    color: var(--primary-blue);
    font-size: 24pt;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 5px;
    display: block;
}

/* --- NEW: Navigation Bar (Grey Top Bar) --- */
p.Base[style*="background-color: #d8d8d8"], 
p.Base[style*="background-color: #f0f0f0"] {
    background-color: #f0f0f0 !important;
    border-bottom: 1px solid #cccccc;
    padding: 10px 20px;
    margin: -20px -40px 20px -40px;
    text-align: right;
    font-size: 9pt;
}

/* --- Primary Typography --- */
.Base, p.Base {
    font-size: 11pt;
    margin-bottom: 12px;
}

/* --- Headings --- */
.Subhead, p.Subhead {
    font-size: 16pt;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 24px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 4px;
}

.Subhead2, p.Subhead2 {
    font-size: 11pt;
    font-weight: bold;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #eef4fa; 
    padding: 6px 10px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 4px 4px 0;
    display: inline-block;
}

/* --- Numeric Grids (Code/Data) --- */
.NumericGrid, .NumericGrid2, pre {
    font-family: "Lucida Console", "Consolas", monospace;
    font-size: 9.5pt;
    color: #333333;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 10px;
    white-space: nowrap; /* Keeps data columns aligned */
    overflow-x: auto;
    display: block;
    line-height: 1.2;
}

/* --- Tables --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th {
    background-color: #f4f6f8;
    font-weight: bold;
    padding: 10px 8px;
    border-bottom: 2px solid #cccccc;
}

td {
    padding: 10px 8px;
    border-bottom: 1px solid #eeeeee;
}