/* custom.css — override the base font for the entire IG */

/* Match mkdocs default color */
:root {
    --ig-header-color: rgb(52, 65, 146);
    --ig-header-container-color: rgb(52, 65, 146);
    --ig-status-text-color: white;

    --navbar-bg-color: rgb(52, 65, 146);
    --stripe-bg-color: rgb(52, 65, 146);
    --footer-container-bg-color: rgb(52, 65, 146);
    --footer-bg-color: rgb(52, 65, 146);
    --publish-box-bg-color: rgb(203, 206, 231);

    --breadcrumb-bg-color: rgb(52, 65, 146);

}

#segment-navbar {
    background-color: var(--navbar-bg-color);
}

#publish-box {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

#segment-breadcrumb {
  background-color: var(--ig-header-container-color);
  color: var(--ig-header-color);
}

#segment-breadcrumb > .container {
  background-color: var(--ig-header-container-color);
  color: white;
}

.breadcrumb a {
    color: white;
    border-radius: 0px;
}


/* Hide the spurious anchors generated by the IG publisher in the menu */
.navbar-nav > li > a[name^="l"] {
    display: none !important; /* The !important might be needed to override other styles */
}

/* FSH Tab Styling */
.fsh-content {
    margin: 10px 0;
}

.fsh-header {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-bottom: none;
    padding: 8px 12px;
    border-radius: 4px 4px 0 0;
}

.fsh-header h4 {
    margin: 0;
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.fsh-code {
    border: 1px solid #dee2e6;
    border-radius: 0 0 4px 4px;
    background-color: #f8f9fa;
    max-height: 600px;
    overflow-y: auto;
}

.fsh-code pre {
    margin: 0;
    padding: 12px;
    background: transparent;
    border: none;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.4;
    color: #212529;
}

.fsh-code code {
    background: transparent;
    padding: 0;
    border: none;
    font-size: inherit;
}

/* FSH syntax highlighting */
.fsh-code .fsh-keyword {
    color: #d73a49;
    font-weight: bold;
}

.fsh-code .fsh-comment {
    color: #6a737d;
    font-style: italic;
}

.fsh-code .fsh-string {
    color: #032f62;
}

.tab-content-header {
    padding: 10px 0;
    color: #6c757d;
    font-size: 14px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 15px;
}