﻿
/* christmas lights start */

/* Control panel */
:root {
    /* Speed – tweak these to slow down/speed up each color */
    --flash-base: 4s; /* red */
    --flash-fast: 3.5s; /* green */
    --flash-medium: 4.5s; /* blue */
    --flash-slow: 5s; /* yellow */
    --flash-slower: 6s; /* orange */
    /* C9-style colors */
    /* 1: Red */
    --light-1-color: #ff4b3a;
    --light-1-dim-color: rgba(255, 75, 58, 0.4);
    --light-1-glow: #ff4b3a;
    --light-1-dim-glow: rgba(255, 75, 58, 0.2);
    /* 2: Green */
    --light-2-color: #2ecc71;
    --light-2-dim-color: rgba(46, 204, 113, 0.4);
    --light-2-glow: #2ecc71;
    --light-2-dim-glow: rgba(46, 204, 113, 0.2);
    /* 3: Blue */
    --light-3-color: #3498db;
    --light-3-dim-color: rgba(52, 152, 219, 0.4);
    --light-3-glow: #3498db;
    --light-3-dim-glow: rgba(52, 152, 219, 0.2);
    /* 4: Yellow */
    --light-4-color: #ffd166;
    --light-4-dim-color: rgba(255, 209, 102, 0.4);
    --light-4-glow: #ffd166;
    --light-4-dim-glow: rgba(255, 209, 102, 0.2);
    /* 5: Orange */
    --light-5-color: #ff9f1c;
    --light-5-dim-color: rgba(255, 159, 28, 0.4);
    --light-5-glow: #ff9f1c;
    --light-5-dim-glow: rgba(255, 159, 28, 0.2);
}

.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    margin: -15px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
}

    .lightrope li {
        position: relative;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 12px;
        height: 28px;
        border-radius: 50%;
        margin: 20px;
        display: inline-block;
        /* default: red */
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
        -webkit-animation-name: flash-1;
        animation-name: flash-1;
        -webkit-animation-duration: var(--flash-base);
        animation-duration: var(--flash-base);
    }

        /* 2nd in each group of 5 – green */
        .lightrope li:nth-child(5n+2) {
            background: var(--light-2-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
            -webkit-animation-name: flash-2;
            animation-name: flash-2;
            -webkit-animation-duration: var(--flash-fast);
            animation-duration: var(--flash-fast);
        }

        /* 3rd – blue */
        .lightrope li:nth-child(5n+3) {
            background: var(--light-3-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
            -webkit-animation-name: flash-3;
            animation-name: flash-3;
            -webkit-animation-duration: var(--flash-medium);
            animation-duration: var(--flash-medium);
        }

        /* 4th – yellow */
        .lightrope li:nth-child(5n+4) {
            background: var(--light-4-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
            -webkit-animation-name: flash-4;
            animation-name: flash-4;
            -webkit-animation-duration: var(--flash-slow);
            animation-duration: var(--flash-slow);
        }

        /* 5th – orange */
        .lightrope li:nth-child(5n+5) {
            background: var(--light-5-color);
            box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
            -webkit-animation-name: flash-5;
            animation-name: flash-5;
            -webkit-animation-duration: var(--flash-slower);
            animation-duration: var(--flash-slower);
        }

        .lightrope li:before {
            content: "";
            position: absolute;
            background: #222;
            width: 10px;
            height: 9.3333333333px;
            border-radius: 3px;
            top: -4.6666666667px;
            left: 1px;
        }

        .lightrope li:after {
            content: "";
            top: -14px;
            left: 9px;
            position: absolute;
            width: 52px;
            height: 18.6666666667px;
            border-bottom: solid #222 2px;
            border-radius: 50%;
        }

        .lightrope li:last-child:after {
            content: none;
        }

        .lightrope li:first-child {
            margin-left: -40px;
        }

    /* turn off flashing completely */
    .lightrope.lightrope-static li {
        -webkit-animation: none !important;
        animation: none !important;
    }


/* RED */
@-webkit-keyframes flash-1 {
    0%, 100% {
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
    }

    50% {
        background: var(--light-1-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-dim-glow);
    }
}

@keyframes flash-1 {
    0%, 100% {
        background: var(--light-1-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-glow);
    }

    50% {
        background: var(--light-1-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-1-dim-glow);
    }
}

/* GREEN */
@-webkit-keyframes flash-2 {
    0%, 100% {
        background: var(--light-2-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
    }

    50% {
        background: var(--light-2-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-dim-glow);
    }
}

@keyframes flash-2 {
    0%, 100% {
        background: var(--light-2-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-glow);
    }

    50% {
        background: var(--light-2-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-2-dim-glow);
    }
}

/* BLUE */
@-webkit-keyframes flash-3 {
    0%, 100% {
        background: var(--light-3-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
    }

    50% {
        background: var(--light-3-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-dim-glow);
    }
}

@keyframes flash-3 {
    0%, 100% {
        background: var(--light-3-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-glow);
    }

    50% {
        background: var(--light-3-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-3-dim-glow);
    }
}

/* YELLOW */
@-webkit-keyframes flash-4 {
    0%, 100% {
        background: var(--light-4-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
    }

    50% {
        background: var(--light-4-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-dim-glow);
    }
}

@keyframes flash-4 {
    0%, 100% {
        background: var(--light-4-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-glow);
    }

    50% {
        background: var(--light-4-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-4-dim-glow);
    }
}

/* ORANGE */
@-webkit-keyframes flash-5 {
    0%, 100% {
        background: var(--light-5-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
    }

    50% {
        background: var(--light-5-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-dim-glow);
    }
}

@keyframes flash-5 {
    0%, 100% {
        background: var(--light-5-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-glow);
    }

    50% {
        background: var(--light-5-dim-color);
        box-shadow: 0px 4.6666666667px 24px 3px var(--light-5-dim-glow);
    }
}

/* christmas lights end */






































/* skip link at the top of the masterpage */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip-link:focus {
        position: absolute;
        left: 6px;
        top: 7px;
        z-index: 999999;
        width: auto;
        height: auto;
        overflow: visible;
        outline: 3px solid #000;
        background: #fff;
        padding: 10px;
        text-decoration: none;
        color: #000;
    }

.system-notification a {
    color: #ffffff !important; /* Makes link text white */
    text-decoration: underline !important; /* Underlines the link text */
    font-weight: 600 !important;
}

.additional_information {
    border: 1px;
    border-style: solid;
    border-color: #dedede;
}

    .additional_information td {
        padding: 6px !important;
    }

.comment_textbox {
    width: 100% !important;
    max-width: 500px;
    height: 62px;
}

.email_body_textbox {
    width: 100% !important;
    max-width: 500px;
    height: 200px;
}

/* for lighthouse */
.RadForm_Silk {
    background-color: transparent !important;
}

.RadGrid_Silk .rgInfoPart strong {
    color: #3e3e3e !important;
}

.RadGrid_Telerik .rgInfoPart {
    color: #000 !important;
}

.RadGrid_Simple .rgInfoPart {
    color: #000 !important;
}

.details_table {
    border-spacing: 0px;
}

    .details_table td {
        padding: 6px;
    }

.RadEditor table.reLayoutWrapper td {
    padding: 0;
}

/*dumb width error with rad editors in html view*/
.RadEditor .rfdTextInput, .rfdTextarea textarea {
    width: 100% !important;
}

.main_table {
    width: 100%;
    border-color: #FFF;
    /* not for sure why this has a border at all - adam - 2/12/2025 */
    /*border-width: 1px;*/
    border-width: 0;
    border-style: solid;
    border-spacing: 0px;
}

    .main_table td {
        padding: 6px;
    }

.main_table_padding_blitz td {
    padding: 20px;
}

.table_padding_only {
    border-spacing: 0px;
}

    .table_padding_only td {
        padding: 6px;
    }

/*.approved_balances_table {
    border: 1px;
    border-style: solid;
    border-color: #818181;
    background-color: White;
    border-spacing: 0px;
}

    .approved_balances_table td {
        padding: 2px;
    }*/

.approved_balances_table {
    border: 1px;
    border-style: solid;
    border-color: #D1D5DB;
    background-color: White;
    border-spacing: 0px;
}

    .approved_balances_table td {
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 4px;
        padding-right: 4px;
    }

hr {
    border: none;
    border-top: 3px double #d9d9d9;
    color: #d9d9d9;
    overflow: visible;
    text-align: center;
    height: 5px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

    hr:after {
        background: #fff;
        content: '§';
        padding: 0 4px;
        position: relative;
        top: -10px;
    }

.error {
    color: #cc0000 !important;
}

.required {
    height: 16px;
    width: 16px;
    border: none 0px #000000;
}

.details_wrapper {
    background-color: #F4F5F1;
    border-color: #818181;
    border-width: 1px;
    border-style: solid;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.content_wrapper {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.asset_image {
    border: 1px solid #818181 !important;
    /*padding: 1px;*/
}

.workshop_image {
    float: right;
    margin-left: 8px;
    border: 1px solid #818181 !important;
    padding: 1px;
    margin-bottom: 8px;
}

.icon_text_link {
    display: inline-block;
    /*padding-bottom: 10px;*/
}

    .icon_text_link .icon {
        padding-right: 7px;
    }

    /* hack to make it work with links being inline-block */
    .icon_text_link:hover {
        text-decoration: underline !important;
    }

::placeholder {
    opacity: .4;
}

.responsive_width_130 {
    width: 130px !important;
}

.responsive_width_149 {
    width: 149px !important;
}

.responsive_width_150 {
    width: 150px !important;
}

.responsive_width_200 {
    width: 200px !important;
}

.responsive_width_250 {
    width: 250px !important;
}

.responsive_width_300 {
    width: 300px !important;
}

.responsive_width_350 {
    width: 350px !important;
}

.responsive_width_400 {
    width: 400px !important;
}

.responsive_width_450 {
    width: 450px !important;
}

.responsive_width_500 {
    width: 500px !important;
}

.responsive_width_650 {
    width: 650px !important;
}

.responsive_width_rad_editor {
    width: 650px !important;
}

.responsive_shown_700px {
    display: none !important;
}

@media screen and (max-width: 700px) {
    .responsive_width_130 {
        width: 100px !important;
    }

    .responsive_width_149 {
        width: 100px !important;
    }

    .responsive_width_150 {
        width: 100px !important;
    }

    .responsive_width_200 {
        width: 150px !important;
    }

    .responsive_width_250 {
        width: 150px !important;
    }

    .responsive_width_300 {
        width: 200px !important;
    }

    .responsive_width_350 {
        width: 200px !important;
    }

    .responsive_width_400 {
        width: 200px !important;
    }

    .responsive_width_450 {
        width: 200px !important;
    }

    .responsive_width_500 {
        width: 200px !important;
    }

    .responsive_width_650 {
        width: 300px !important;
    }

    .required {
        display: none;
    }

    /* hides the filter row on the rad grids for small screens */
    .RadGrid_Silk .rgFilterRow {
        display: none;
    }

    .RadGrid_Bootstrap .rgFilterRow {
        display: none;
    }

    .label:after {
        content: "" !important;
    }

    .main_table_padding_blitz td {
        padding: 6px;
    }

    .responsive_hidden_700px {
        display: none !important;
    }

    .responsive_shown_700px {
        display: inline !important;
    }

    .responsive_width_100_percent_at_700px {
        width: 100% !important;
    }


    /* remove some of the card padding when on a mobile device */
    .card-body {
        padding-top: 5px !important;
        padding-right: 5px !important;
        padding-bottom: 5px !important;
        padding-left: 5px !important;
    }

    .content {
        /*padding-top: 0px !important;*/
        padding-right: 10px !important;
        /*padding-bottom: 0px !important;*/
        padding-left: 10px !important;
    }
}

@media (min-width:992px) {
    .account_image {
        /*   float: right;
        margin-right: 11px;*/
    }
}





@media screen and (max-width: 1400px) {
    .responsive_hidden_1400px {
        display: none !important;
    }
}


/* used on the login page */
@media screen and (max-width: 1200px) {
    .responsive_hidden_1200px {
        display: none !important;
    }

    .responsive_width_100_percent_at_1200px {
        width: 100% !important;
    }
}








.account_image {
    border: solid 1px #818181;
    /*border: solid 2px #000;
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);*/
}

.clear_floats {
    clear: both;
}

.rad_list_box_200px {
    width: 200px !important;
}

.rad_list_box_225px {
    width: 225px !important;
}

.rad_list_box_250px {
    width: 250px !important;
}

.rad_list_box_400px {
    width: 400px !important;
}




.rad_list_box_table {
    border-spacing: 0px;
}

    .rad_list_box_table td {
        padding: 6px;
    }

@media screen and (max-width: 700px) {
    .rad_list_box_200px {
        width: 100% !important;
    }

    .rad_list_box_225px {
        width: 100% !important;
    }

    .rad_list_box_250px {
        width: 100% !important;
    }


    .rad_list_box_400px {
        width: 100% !important;
    }


    .rad_list_box_table {
        width: 100%;
    }
}








/* ************************************************************** headings ************************************************************** */

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .625rem
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .625rem;
    font-weight: 400;
    line-height: 1.5715
}

.h1, h1 {
    font-size: 1.625rem
}

.h2, h2 {
    font-size: 1.5rem
}

.h3, h3 {
    font-size: 1.375rem
}

.h4, h4 {
    font-size: 1.25rem
}

.h5, h5 {
    font-size: 1.125rem
}

.h6, h6 {
    font-size: 1rem
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    letter-spacing: -.015em
}


a.data-link-green:link {
    color: green !important;
    text-decoration: underline !important;
    font-weight: 700;
}

a.data-link-green:visited {
    color: green !important;
    text-decoration: underline !important;
    font-weight: 700;
}

a.data-link-green:active {
    color: green !important;
    text-decoration: underline !important;
    font-weight: 700;
}

a.data-link-green:hover {
    color: green !important;
    text-decoration: underline !important;
    font-weight: 700;
}

.data-link-green-text {
    color: green !important;
    text-decoration: underline !important;
    font-weight: 700;
}


.rad_grid_header_text_screen_reader_only {
    color: transparent !important;
    font-size: 0;
    line-height: 0;
}

    .rad_grid_header_text_screen_reader_only::before {
        content: attr(aria-label);
        position: absolute;
        left: -10000px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }



.knowledgebase-img {
    display: block;
    margin: 20px auto;
    max-width: 80%;
    height: auto;
}








/*.dark_blue_action_button {
    background-color: #286090;
    color: #fff;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .dark_blue_action_button:hover {
        background-color: #1e4d73;
        color: #fff;
        text-decoration: none;
    }
*/


.dark_blue_action_button {
    background-color: #286090;
    color: #fff !important;
    border: 1px solid transparent;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .dark_blue_action_button:hover {
        background-color: #1e4d73;
        color: #fff !important;
        text-decoration: none;
    }

.light_grey_cancel_button {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .light_grey_cancel_button:hover {
        background-color: #e9ecef;
        color: #212529;
        text-decoration: none;
    }




.light_grey_action_button {
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .light_grey_action_button:hover {
        background-color: #e9ecef;
        text-decoration: none;
        color: #333;
    }

/* highlights today on the date pickers */
.RadCalendar_Bootstrap td.highlight_today {
    border: 1px solid #8AA1B4 !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
}

/* knowledgebase */
.kb-article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef0f3;
}

.kb-article-title {
    margin: 0 0 .5rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d2329;
    line-height: 1.2;
}

.kb-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    color: #6c757d;
    font-size: .9rem;
}

    .kb-article-meta .kb-meta-item {
        display: inline-flex;
        align-items: center;
    }

        .kb-article-meta .kb-meta-item .ph {
            font-size: 1rem;
        }

    .kb-article-meta .kb-meta-divider {
        color: #adb5bd;
        font-size: 1.5rem;
        line-height: 1;
    }

    .kb-article-meta .kb-meta-sections .kb-meta-divider {
        margin-right: .25rem;
    }

    .kb-article-meta .kb-meta-sections a {
        margin-left: .25rem;
    }

/* ===== Article body — shared styles for ALL knowledgebase articles ===== */
.kb-article {
    color: #2c3034;
}

    .kb-article .lead-paragraph {
        font-size: 1.0625rem;
        color: #495057;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .kb-article p {
        margin-bottom: .75rem;
    }

    /* Callouts */
    .kb-article .callout {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        padding: .875rem 1rem;
        border-radius: .5rem;
        margin-bottom: .75rem;
    }

    .kb-article .callout-warning {
        background: #fff3cd;
        color: #664d03;
    }

    .kb-article .callout-info {
        background: #d1ecf1;
        color: #0c5460;
    }

    .kb-article .callout-success {
        background: #d1e7dd;
        color: #0f5132;
    }

    .kb-article .callout-danger {
        background: #f8d7da;
        color: #842029;
    }

    .kb-article .callout-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
        line-height: 1;
        margin-top: 1px;
    }

    .kb-article .callout-title {
        margin: 0 0 .15rem 0;
        font-size: .975rem;
        font-weight: 600;
        color: inherit;
    }

    .kb-article .callout p {
        margin: 0;
        color: inherit;
    }

    /* Section headings */
    .kb-article .section-heading {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin: 1.75rem 0 .75rem 0;
    }

        .kb-article .section-heading .ph {
            font-size: 1.4rem;
            color: #0d6efd;
        }

        .kb-article .section-heading h4 {
            margin: 0;
            font-size: 1.25rem;
            color: #1d2329;
        }

    /* Step grid (auto-fit so it adapts to article column width) */
    .kb-article .step-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: .625rem;
        margin: 1rem 0 1.5rem;
    }

    .kb-article .step-card {
        background: #f5f6f8;
        border-radius: .5rem;
        padding: .875rem .5rem .75rem;
        text-align: center;
        position: relative;
        transition: transform .15s ease, box-shadow .15s ease;
    }

        .kb-article .step-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 .375rem .75rem rgba(0,0,0,.06);
        }

    .kb-article .step-num {
        position: absolute;
        top: -8px;
        left: -8px;
        background: #fff;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: .825rem;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.1);
        color: #0d6efd;
    }

    .kb-article .step-icon {
        font-size: 1.65rem;
        color: #0d6efd;
        display: block;
        margin-bottom: .25rem;
    }

    .kb-article .step-card h6 {
        margin: .25rem 0 .15rem;
        font-weight: 600;
        font-size: .95rem;
        color: #1d2329;
    }

    .kb-article .step-card small {
        display: block;
        color: #6c757d;
        font-size: .75rem;
        line-height: 1.35;
    }

    /* Highlight cards */
    .kb-article .highlight-card {
        border-radius: .5rem;
        padding: 1.125rem 1.25rem;
        margin: 1.25rem 0;
    }

    .kb-article .highlight-card-danger {
        background: #fdf2f2;
        border-left: 4px solid #dc3545;
    }

    .kb-article .highlight-card-info {
        background: #e7f3fb;
    }

    .kb-article .highlight-card-success {
        background: #e8f5ee;
    }

    .kb-article .highlight-card-warning {
        background: #fff8e6;
    }

    .kb-article .highlight-card-header {
        display: flex;
        align-items: center;
        gap: .625rem;
        margin-bottom: .625rem;
    }

        .kb-article .highlight-card-header h5 {
            margin: 0;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1d2329;
        }

    .kb-article .highlight-card p {
        margin: 0 0 .5rem 0;
        color: #495057;
    }

        .kb-article .highlight-card p:last-child {
            margin-bottom: 0;
        }

    /* Icon chip */
    .kb-article .icon-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        flex-shrink: 0;
        font-size: 1.05rem;
        background: #cfe2ff;
        color: #084298;
    }

    .kb-article .icon-chip-danger {
        background: #f8d7da;
        color: #842029;
    }

    .kb-article .icon-chip-info {
        background: #cff4fc;
        color: #055160;
    }

    .kb-article .icon-chip-warning {
        background: #fff3cd;
        color: #664d03;
    }

    .kb-article .icon-chip-success {
        background: #d1e7dd;
        color: #0f5132;
    }

    /* Field rows */
    .kb-article .field-row {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        padding: .75rem 0;
        border-bottom: 1px solid #eef0f3;
    }

        .kb-article .field-row:last-child {
            border-bottom: none;
        }

        .kb-article .field-row.highlight {
            background: #fffaf0;
            border-radius: .375rem;
            padding: .875rem;
            margin: .25rem 0;
            border-bottom: none;
        }

        .kb-article .field-row .field-body {
            flex: 1;
            min-width: 0;
        }

        .kb-article .field-row h6 {
            margin: 0 0 .2rem 0;
            font-weight: 600;
            font-size: .975rem;
            color: #1d2329;
        }

        .kb-article .field-row p {
            margin: 0;
            color: #6c757d;
            line-height: 1.5;
            font-size: .9rem;
        }

        .kb-article .field-row .field-body p + p {
            margin-top: .375rem;
        }

    /* Field badges */
    .kb-article .field-badge {
        display: inline-block;
        padding: .15rem .45rem;
        font-size: .65rem;
        font-weight: 600;
        border-radius: .25rem;
        margin-left: .375rem;
        vertical-align: 2px;
        text-transform: uppercase;
        letter-spacing: .025em;
    }

    .kb-article .field-badge-required {
        background: #f8d7da;
        color: #842029;
    }

    .kb-article .field-badge-info {
        background: #cff4fc;
        color: #055160;
    }

    .kb-article .field-badge-warning {
        background: #fff3cd;
        color: #664d03;
    }

    .kb-article .field-badge-success {
        background: #d1e7dd;
        color: #0f5132;
    }

    /* Summary grid */
    .kb-article .summary-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: .625rem;
        margin-top: 1.25rem;
    }

    .kb-article .summary-card {
        border-radius: .5rem;
        padding: 1rem 1.125rem;
    }

    .kb-article .summary-card-success {
        background: #d1e7dd;
    }

    .kb-article .summary-card-secondary {
        background: #e2e3e5;
    }

    .kb-article .summary-card-info {
        background: #cff4fc;
    }

    .kb-article .summary-card-warning {
        background: #fff3cd;
    }

    .kb-article .summary-card-header {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: .375rem;
    }

        .kb-article .summary-card-header h6 {
            margin: 0;
            font-weight: 600;
            font-size: 1rem;
            color: #1d2329;
        }

    .kb-article .summary-card .ph {
        font-size: 1.35rem;
    }

    .kb-article .summary-card-success .ph {
        color: #0f5132;
    }

    .kb-article .summary-card-secondary .ph {
        color: #495057;
    }

    .kb-article .summary-card-info .ph {
        color: #055160;
    }

    .kb-article .summary-card-warning .ph {
        color: #664d03;
    }

    .kb-article .summary-card p {
        margin: 0;
        font-size: .85rem;
        color: #495057;
        line-height: 1.5;
    }

    .kb-article .kb-figure {
        margin: 1.25rem 0;
        text-align: center;
    }

        .kb-article .kb-figure img {
            max-width: 80%;
            height: auto;
            border-radius: .5rem;
            border: 1px solid #dee2e6;
            box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
        }

        .kb-article .kb-figure figcaption {
            margin-top: .5rem;
            font-size: .825rem;
            color: #6c757d;
            font-style: italic;
        }

.highlight-card-info {
    border-left: 5px solid #0D6EFD;
}

.highlight-card-warning {
    border-left: 5px solid #FFC107;
}

.highlight-card-danger {
    border-left: 5px solid #DC3545;
}

.highlight-card-success {
    border-left: 5px solid #198754;
}

.kb-article pre {
    white-space: pre-wrap;
    word-break: break-all;
}