.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-frost {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(230, 230, 230, 0.7);
    z-index: 1020;
}

.sticky-user {
    top: calc(60px + 3rem);
}

.logo {
    margin-right: 10px;
    /* Adjust the margin as needed */
}

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

.line1 {
    font-weight: bold;
    font-size: 20px;
    /* Adjust the font size as needed */
    color: #032f77;
}

.line2 {
    font-size: 14px;
    /* Adjust the font size as needed */
    color: #10223e;
    /* Adjust the color as needed */
}

.searchBar {
    margin-bottom: auto;
    position: relative;
    margin-top: auto;
    height: 60px;
    background-color: #032f77;
    border-radius: 30px;
    padding: 10px;
}

.searchInput {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.searchBar:hover>.searchInput,
.searchBar:focus-within>.searchInput,
.searchInput:not(:placeholder-shown) {
    padding: 0 10px;
    width: 320px;
    caret-color: rgb(0, 76, 255);
    transition: width 0.4s linear;
}

@media (max-width: 768px) {

    .searchBar:hover>.searchInput,
    .searchBar:focus-within>.searchInput,
    .searchInput:not(:placeholder-shown) {
        padding: 0 10px;
        width: 280px;
        caret-color: rgb(0, 76, 255);
        transition: width 0.4s linear;
    }

    .searchBar:hover>.advancedSearchLink {
        display: block;
    }
}

.searchBar:hover>.searchIcon,
.searchBar:focus-within>.searchIcon,
.searchInput:not(:placeholder-shown)+.searchIcon {
    background: white;
    color: #3c78e7;
    border-radius: 50%;
}

.searchIcon {
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 0;
    background: none;
    text-decoration: none;
}

.advancedSearchLink {
    position: absolute;
    top: calc(50% + 30px);
    right: 15px;
    display: none;
    text-decoration: none;
}

.searchBar:hover>.advancedSearchLink,
.searchBar:focus-within>.advancedSearchLink,
.searchInput:not(:placeholder-shown)+.advancedSearchLink {
    display: block;
}

.container hr {
    height: 1px;
    border-top: 3px solid #423e31;
}

.footer .credits {
    font-size: 1em;
}


/* added by shreyes */
.nav-item .nav-link {
    color: #032f77;
}

.nav-item .nav-link:hover {
    color: #6c9eef;
}


.nav-item .nav-link:focus {
    color: #032f77;
}

.nav-item .nav-link.active {
    color: #032f77;
    background-color: transparent;
}



.table thead th {
    background-color: #032f77;
    color: #ffffff;
}

.table thead.table-dark th {
    background-color: #032f77;
    color: #ffffff;
}

/* Offset anchor scrolling for fixed header */
[id^="ctd-"] {
    scroll-margin-top: 120px;
    /* header (104px) + safety */
}

.btn-outline-primary {
    color: #032f77;
    border-color: #032f77;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #032f77;
    color: #ffffff;
    border-color: #032f77;
}

.btn-group {
    flex-wrap: wrap;
    justify-content: center;
}

.scroll-offset {
    scroll-margin-top: 120px;
    /* adjust to match your navbar height */
}

/* for sidebar */
.sticky-user .nav.nav-pills .nav-link.active {
    background-color: #032f77 !important;
    color: #ffffff !important;
}

#fw-title {
    scroll-margin-top: 140px;
}


/* .info-icon {
    cursor: help;
    font-size: 11px;
    margin-left: 4px;
    color: #032f77;
    padding: 4px;
}

.table-dark .info-icon {
    color: #f8f9fa;
}  */


.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    width: 16px;
    height: 16px;
    margin-left: 6px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    color: #ffffff;
    border-radius: 50%;

    cursor: help;
    user-select: none;

    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.info-icon:hover {
    background-color: #0d6efd;
}


/* others */
#fw-summary {
    scroll-margin-top: 140px;
}

#fw-summary-bcf {
    scroll-margin-top: 140px;
}

#cy-tooltip {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

/* .neo-tooltip {
    min-width: 220px;
    max-width: 360px;
    background: #1e1e1e;
    color: #e6e6e6;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
} */

.neo-tooltip {
    position: absolute;
    min-width: 220px;
    max-width: 360px;
    background: #1e1e1e;
    color: #e6e6e6;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    padding: 8px 10px;
}


.neo-tooltip-header {
    background: #2a2a2a;
    padding: 6px 10px;
    font-weight: 600;
    border-bottom: 1px solid #333;
    border-radius: 6px 6px 0 0;
}

.neo-tooltip-body {
    padding: 8px 10px;
}

.neo-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.neo-key {
    color: #9aa4ad;
    flex-shrink: 0;
}

.neo-val {
    text-align: right;
    word-break: break-word;
}

.neo-val.mono {
    font-family: monospace;
    color: #8bdcff;
}


.ther-pill {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid #032f77;
    color: #032f77;
    background-color: rgb(249, 253, 255);
    white-space: nowrap;
}

.ther-summary-box {
    padding: 0.75rem 1rem;
    border: 1px solid #d6d6d6;
    border-radius: 0.6rem;
    background-color: rgb(249, 253, 255);
}

a {
    color: #032f77;
}

a:hover {
    color: #275195;
}

.advancedSearchLink a{
    color: #032f77;
}

.advancedSearchLink a:hover {
    color: #5f97f1;
}

/* .navbar {
  height: 110px;
} */




/* 
22 jan 2026 */
/* Glossary trigger */
.ther-glossary-trigger {
    font-size: 0.85rem;
    color: #032f77;
    cursor: help;
    user-select: none;
}

.ther-glossary-trigger:hover {
    text-decoration: underline;
}

/* Positioning for glossary panel */


.ther-glossary-wrapper {
    position: relative;
}

.ther-glossary {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    z-index: 1010;
}

.ther-glossary-trigger {
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}


.ther-glossary-wrapper {
    position: sticky;
    top: 0;
    z-index: 1010;
    background: #fff;
    padding: 6px 0;
}

#glossary-toggle {
    position: fixed;
    bottom: 90px; /* above back-to-top */
    right: 30px;
    background-color: #0d6efd;
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 25px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#glossary-panel {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 320px;
    max-height: 360px;
    background: #1e1e1e;
    color: #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

.glossary-header {
    padding: 8px 12px;
    background: #2a2a2a;
    font-weight: 600;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#glossary-close {
    cursor: pointer;
    font-size: 18px;
}

.glossary-body {
    padding: 10px 12px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 12px;
}

.break-at-plus {
    white-space: normal;
    word-break: break-word;
}

.neo-section-title {
  font-weight: 700;
  margin: 10px 0 8px;
  font-size: 0.95rem;
}

.neo-separator {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 10px 0;
}

.wrap-name {
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
}

.section-title {
    margin-top: 2rem;
}
