/* /Pages/BindingEnergyCalculator.razor.rz.scp.css */
/* Layout */
.energy-container[b-a2wf5ljcdr] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.left-panel[b-a2wf5ljcdr] {
    flex: 1;
    max-width: 400px;
    margin-right: 20px;
}

.right-panel[b-a2wf5ljcdr] {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Input Panel Styling */
.left-panel div[b-a2wf5ljcdr] {
    margin-bottom: 20px;
}

.left-panel label[b-a2wf5ljcdr] {
    font-size: 14px;
    color: #9d9d9d;
    display: block;
    margin-bottom: 5px;
}

.left-panel input[type="number"][b-a2wf5ljcdr] {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 80px;
    margin-right: 5px;
}

.left-panel span[b-a2wf5ljcdr] {
    font-size: 14px;
    color: #9d9d9d;
}

button[b-a2wf5ljcdr] {
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

    button:hover[b-a2wf5ljcdr] {
        background-color: #0056b3;
    }

h4[b-a2wf5ljcdr] {
    font-size: 18px;
    color: #bebebe;
    margin-top: 30px;
}

/* Canvas Styling */
#particleCanvas[b-a2wf5ljcdr] {
    width: 600px;
    height: 400px;
}

.details img[b-a2wf5ljcdr] {
    background-color: white;
    padding: 10px;
}

.modal-dialog[b-a2wf5ljcdr] {
    max-width: 75vw;
}

.modal[b-a2wf5ljcdr] {
    background-color: rgba(0, 0, 0, 0.9);
}
/* /Pages/ChatAssistant.razor.rz.scp.css */
*[b-8d8h4x26h6] {
    color: #fff;
}

body[b-8d8h4x26h6] {
    margin: 0;
    padding: 0;
    background-color: #202428;
}

.container[b-8d8h4x26h6] {
    max-width: 10000px;
    display: flex;
    margin: 0;
    padding: 0;
}

.side-bar[b-8d8h4x26h6] {
    background-color: #202123;
    width: 244px;
    height: calc(100vh - 95px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
}

.main[b-8d8h4x26h6] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*text-align: center;*/
    justify-content: space-between;
    height: calc(100vh - 95px);
}

.conversation[b-8d8h4x26h6] {
    width: 100%;
    height: calc(100vh - 250px);
    z-index: 99;
    opacity: 75%;
    overflow-y: scroll;
    padding: 5px;
}

.message-container[b-8d8h4x26h6] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px;
}

    .message-container.assistant[b-8d8h4x26h6] {
        align-items: flex-end;
    }

    .message-container.error[b-8d8h4x26h6] {
        align-items: flex-end;
    }

    .message-container.user .name[b-8d8h4x26h6] {
        font-size: 0.8em;
        color: #555;
        margin-bottom: 5px;
        margin-top: 2px;
        /*background-color: #0d385b;
        border-radius: 20px;
        height: auto;*/
    }

    .message-container.assistant .name[b-8d8h4x26h6] {
        font-size: 0.8em;
        color: #555;
        margin-bottom: 5px;
        margin-top: 2px;
        /*background-color: #0d385b;
        border-radius: 20px;
        height: auto;*/
    }

    .message-container.error .name[b-8d8h4x26h6] {
        font-size: 0.8em;
        color: red;
        margin-bottom: 5px;
        margin-top: 2px;
        /*background-color: #0d385b;
        border-radius: 20px;
        height: auto;*/
    }

    .message-container.assistant .text-bubble[b-8d8h4x26h6] {
        background-color: #0d385b;
        padding: 8px;
        border-radius: 10px 10px 0 10px;
        color: white;
        max-width: 80%;
        word-wrap: break-word;
        margin: 0 25px 0 0;
    }

    .message-container.error .text-bubble[b-8d8h4x26h6] {
        background-color: #921e30;
        padding: 8px;
        border-radius: 10px 10px 0 10px;
        color: white;
        max-width: 80%;
        word-wrap: break-word;
        margin: 0 50px 0 0;
    }

.text-bubble[b-8d8h4x26h6] {
    background-color: #1c5380;
    padding: 8px;
    border-radius: 10px 10px 10px 0;
    color: white;
    max-width: 80%;
    word-wrap: break-word;
    margin: 0 0 0 25px;
}

/*
    #conversation > p:nth-of-type(even) {
        text-align: right;
        background-color: #1c5380;
        border-radius: 5px;
    }

    #conversation > p:nth-of-type(odd) {
        text-align: left;
        background-color: #0d385b;
        border-radius: 5px;
    }
    */

@keyframes ellipsis-b-8d8h4x26h6 {
    0% {
        content: "."
    }

    33% {
        content: ".."
    }

    66% {
        content: "..."
    }

    100% {
        content: ""
    }
}

.loadElipsis[b-8d8h4x26h6]:after {
    content: "";
    animation: ellipsis-b-8d8h4x26h6 1s infinite;
}

.info[b-8d8h4x26h6] {
    color: rgba( 255, 255, 255, 0.5);
    font-size: 11px;
    padding: 10px;
}

#submit[b-8d8h4x26h6] {
    border-radius: 5px;
}

input[b-8d8h4x26h6] {
    display: absolute;
    margin: 0 auto;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    font-size: 20px;
    padding: 12px 15px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 54px 55px, rgba(0, 0, 0, 0.05) 0 -12px 30px, rgba(0, 0, 0, 0.05) 0 4px 6px, rgba(0, 0, 0, 0.05) 0 12px 13px, rgba(0, 0, 0, 0.09) 0 -3px 55px
}

    input:focus[b-8d8h4x26h6] {
        outline: none;
    }

.bottom-section[b-8d8h4x26h6] {
    position: absolute;
    width: 50%;
    display: flex;
    flex-direction: column;
    bottom: 70px;
    align-items: center;
}

.input-container[b-8d8h4x26h6] {
    position: relative;
    margin-left: 5px;
    width: 90%;
    max-width: 540px;
}

    .input-container #submit[b-8d8h4x26h6] {
        position: absolute;
        margin-top: 15px;
        right: 5px;
        cursor: pointer;
        z-index: 999;
    }

    .input-container .loadElipsis[b-8d8h4x26h6] {
        position: absolute;
        font-size: 100px;
        margin-top: 15px;
        top: -90px;
        left: 230px;
        z-index: 999;
    }

button[b-8d8h4x26h6] {
    border: solid 0.5px rgba(255, 255, 255, 0.5);
    background-color: transparent;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
}

.main h1[b-8d8h4x26h6] {
    position: absolute;
    font-size: 33px;
    padding: 200px 0;
    color: #03223b;
}

nav[b-8d8h4x26h6] {
    border-top: solid 0.5px rgba(255, 255, 255, 0.5);
    padding: 10px;
    margin: 10px;
}

.history[b-8d8h4x26h6] {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    height: 100%;
}

    .history p[b-8d8h4x26h6] {
        cursor: pointer;
    }

@media(max-width: 710px) {
    .text-bubble[b-8d8h4x26h6] {
        margin: 0 !important;
    }
}
/* /Pages/CryptoManager.razor.rz.scp.css */
.cryptoContainer[b-ka1qou1pmi] {
    height: 100%;
}

.container[b-ka1qou1pmi] {
    color: black;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 5px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.crypto-card-list[b-ka1qou1pmi] {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    overflow-y: auto;
    padding: 10px;
    border-radius: 10px;
    height: 85vh;
}

.detail-view[b-ka1qou1pmi] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
    border-radius: 10px;
    overflow-y: auto;
    height: 85vh;
    justify-content: center;
}

.settings[b-ka1qou1pmi] {
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 15px;
    align-content: end;
    align-items: end;
    margin: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    right: 50px;
}

.settings button[b-ka1qou1pmi] {
    width: 100%;
}
/* /Pages/CryptoManagerComponents/CryptoCard.razor.rz.scp.css */
.crypto-card-container[b-iko727m0q1] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    width: 100%;
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5), 2px 3px 5px rgba(0, 0, 0, 0.8);
}

.crypto-card[b-iko727m0q1] {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    height: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: #212529;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #c1c4c7;
    z-index: 2;
}

    .crypto-card:hover[b-iko727m0q1] {
        transform: translate(-5px, -5px);
        background-color: #363a3e;
        cursor: pointer;
    }

.chart-container[b-iko727m0q1] {
    width: 100%;
    height: 70px;
    position: relative;
}

.card-title[b-iko727m0q1] {
    color: #f8f9fa;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.card-outline[b-iko727m0q1] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    z-index: 1;
}
/* /Pages/CryptoManagerComponents/CryptoDetails.razor.rz.scp.css */
.crypto-detail[b-gsufhdjzyg] {
    width: 300px;
    max-height: 1000px;
    flex: 1 1 300px;
    margin: 10px;
    padding: 20px;
    background-color: rgba(13, 56, 91, 0.5);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crypto-header[b-gsufhdjzyg] {
    width: 100%;
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.current-price[b-gsufhdjzyg] {
    font-size: 1.5em;
    color: #333;
}

.crypto-stats[b-gsufhdjzyg] {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat[b-gsufhdjzyg] {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.close-button[b-gsufhdjzyg] {
    position: absolute;
    top: 4px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}

    .close-button .oi[b-gsufhdjzyg] {
        color: #333;
    }

    .close-button:hover .oi[b-gsufhdjzyg] {
        color: #e74c3c;
    }

canvas[b-gsufhdjzyg] {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
}
/* /Pages/Dissertation.razor.rz.scp.css */
.pdfViewer[b-lywopwivm5] {
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 100px);
}
.title[b-lywopwivm5] {
    color: #1c5380;
}
.viewerIframe[b-lywopwivm5] {
    width: 100%;
    height: 100%;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}
/* /Pages/EvolutionTF.razor.rz.scp.css */
#canvas-container[b-rt5qk1hkzh] {
/*    width: 1600px;
    height: 800px;*/
    position: relative;
}

.settings-container[b-rt5qk1hkzh] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 20px;
}

.slider-container[b-rt5qk1hkzh] {
    display: flex;
    align-items: center;
}

    .slider-container input[type="range"][b-rt5qk1hkzh] {
        flex-grow: 1;
    }

    .slider-container input[type="number"][b-rt5qk1hkzh] {
        width: 60px;
        margin-left: 10px;
    }

.settings-section[b-rt5qk1hkzh] {
    flex: 1;
    min-width: calc(33.33% - 20px); /* Minimum width for each settings block */
    box-sizing: border-box;
    margin-bottom: 20px;
}

    .settings-section.full-width[b-rt5qk1hkzh] {
        flex: 100%;
        min-width: 100%;
    }

/* Responsive behavior */
@media (max-width: 1024px) {
    .settings-section[b-rt5qk1hkzh] {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .settings-section[b-rt5qk1hkzh] {
        min-width: 100%;
    }
}

.setting label[b-rt5qk1hkzh] {
    cursor: help;
}

.setting input[type="range"][b-rt5qk1hkzh] {
    width: 100%;
}

.advanced-settings.hidden[b-rt5qk1hkzh] {
    display: none;
}

/*.floating-button {
    position: fixed;
    top: 500px;
    right: 20px;
    z-index: 10;
}

.start-button {
    background-color: green;
    right: 500px;
}

.update-button {
    right: 20px;
}

.toggleNN-button {
    right: 300px;
}

.toggleLeader-button {
    right: 100px;
}*/

.floating-button[b-rt5qk1hkzh] {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10;
}

.start-button[b-rt5qk1hkzh] {
    background-color: green;
    right: 300px;
}

.update-button[b-rt5qk1hkzh] {
    right: 20px;
}

.toggleLeader-button[b-rt5qk1hkzh] {
    top: 150px;
    right: 20px;
}

.toggleRays-button[b-rt5qk1hkzh] {
    top: 150px;
    right: 20px;
}

.toggleNN-button[b-rt5qk1hkzh] {
    top: 220px;
    right: 20px;
}

.logGenomes-button[b-rt5qk1hkzh] {
    top: 220px;
    right: 250px;
}
/* /Pages/EvolutionTFNEAT.razor.rz.scp.css */
#canvas-container[b-loy1qmrt9l] {
    position: relative;
}

.genome-viewer[b-loy1qmrt9l] {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #333;
    padding: 10px;
    overflow: auto;
    max-height: 400px;
}

.content[b-loy1qmrt9l] {
    padding-left: 20px; /* Indent child elements */
    display: none;
    background-color: #f9f9f9;
}

.key-value-pair[b-loy1qmrt9l] {
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.key[b-loy1qmrt9l] {
    font-weight: bold;
}

.value[b-loy1qmrt9l] {
    margin-left: 10px;
}


.pageTitle[b-loy1qmrt9l] {
    text-align: left;
    color: #a9aaac;
    font-size: 24px;
    border-bottom: 2px solid #0d385b;
}

.presetsTitle[b-loy1qmrt9l] {
    text-align: center;
    color: #a9aaac;
    font-size: 24px;
    margin-top: 20px;
}

.settings-preset-Buttons[b-loy1qmrt9l] {
    margin-top: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.preset-button[b-loy1qmrt9l] {
    background-color: #0d385b;
    color: white;
    border: none;
    padding: 6px 10px; /* Reduced padding */
    margin: 3px;
    font-size: 12px; /* Reduced font size */
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.3s;
}

    .preset-button:hover[b-loy1qmrt9l] {
        background-color: #1a5a7a;
        transform: scale(1.05);
    }

.resetSimple-button[b-loy1qmrt9l],
.resetSuperSimple-button[b-loy1qmrt9l],
.reset-button[b-loy1qmrt9l],
.save-button[b-loy1qmrt9l],
.upload-button[b-loy1qmrt9l] {
    background-color: #4caf50;
}

.tabs[b-loy1qmrt9l] {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tab-button[b-loy1qmrt9l] {
    font-size: 17px;
    background-color: transparent;
    border: none;
    color: #a9aaac;
    padding: 8px 16px;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 2px solid transparent;
}

    .tab-button.active[b-loy1qmrt9l] {
        color: #0d385b;
        border-color: #0d385b;
        font-weight: bold;
    }

    .tab-button:hover[b-loy1qmrt9l] {
        color: #0d385b;
        border-color: #0d385b;
    }

.tabDesc[b-loy1qmrt9l] {
    color: #ccc;
    text-align: center;
    margin: 0 auto 15px;
    max-width: 80%; /* Limiting the width for better readability */
    font-size: 14px;
    line-height: 1.4;
}

.tab-content[b-loy1qmrt9l] {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensures items are stacked vertically */
    align-items: center; /* Centers items horizontally */
}

.settings-container[b-loy1qmrt9l] {
    display: flex;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
}

.setting-tooltip[b-loy1qmrt9l] {
    background-color: #344444;
    color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-size: 11px;
    color: #aaa;
    margin: 8px 0 6px 0;
}

.setting[b-loy1qmrt9l] {
    background-color: #44444473;
    border-radius: 8px;
    margin: 4px;
    padding: 7px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s, transform 0.3s;
    width: calc(10% - 4px);
    flex-grow: 1;
    flex-shrink: 0;
    position: relative;
    font-size: 12px;
    overflow: hidden;
    z-index: 1;
}

    .setting.large[b-loy1qmrt9l] {
        width: calc(12% - 4px);
    }

    .setting:hover[b-loy1qmrt9l] {
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        transform: scale(1.01);
        background-color: #344444;
        z-index: 10;
    }

    .setting label[b-loy1qmrt9l] {
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
        font-size: 12px; 
    }

    .setting select[b-loy1qmrt9l],
    .setting input[type="checkbox"][b-loy1qmrt9l],
    .setting input[type="number"][b-loy1qmrt9l] {
        width: 100%;
        margin-bottom: 4px;
        background-color: #444444;
        color: #ffffff;
        display: block;
    }

    .setting select[b-loy1qmrt9l] {
        margin-top: 20px;
    }

    .setting input[type="range"][b-loy1qmrt9l] {
        width: 100%;
        margin-bottom: 8px;
        height: 10px;
        border-radius: 5px;
        background: #ddd;
        outline: none;
        opacity: 0.7;
        transition: opacity 0.2s;
    }

    .setting .setting-details[b-loy1qmrt9l] {
        display: none; /* Initially hide details */
    }

    .setting .switch[b-loy1qmrt9l] {
        justify-content: center;
        align-items: center;
        align-content: center;
        position: relative;
        display: flex;
        width: 50px;
        height: 24px;
        margin: 18px auto;
    }

        .setting .switch input[b-loy1qmrt9l] {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .setting .slider[b-loy1qmrt9l] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #444;
        transition: .4s;
        border-radius: 24px;
    }

        .setting .slider[b-loy1qmrt9l]:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

input:checked + .slider[b-loy1qmrt9l] {
    background-color: #0d385b;
}

input:focus + .slider[b-loy1qmrt9l] {
    box-shadow: 0 0 1px #0d385b;
}

input:checked + .slider[b-loy1qmrt9l]:before {
    transform: translateX(26px);
}

.setting-details[b-loy1qmrt9l] {
    font-size: 11px;
    color: #aaa;
    margin: 8px 0 6px 0;
}

.favourite-button[b-loy1qmrt9l] {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffd700; /* Gold color for the star */
    font-size: 15px; /* Adjust as needed */
}

    .favourite-button:hover[b-loy1qmrt9l] {
        color: #ffcc00; /* Slightly different color on hover */
    }

    .favourite-button span[b-loy1qmrt9l] {
        display: inline;
    }

.toggleAdvanced[b-loy1qmrt9l] {
    display: block; /* Make the button a block element */
    width: 90%; /* Full width */
    background-color: #1a5a7a; /* Slightly different color for distinction */
    color: white;
    border: none;
    padding: 6px 12px;
    margin: 12px 0;
    font-size: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

    .toggleAdvanced:hover[b-loy1qmrt9l] {
        background-color: #2b6b90; /* Darken on hover */
        transform: scale(1.02);
    }


@media (max-width: 768px) {
    .setting[b-loy1qmrt9l] {
        width: calc(25% - 8px); /* Four small items per row on smaller screens */
    }

        .setting.large[b-loy1qmrt9l] {
            width: calc(50% - 16px); /* Two large items per row on smaller screens */
        }
}

@media (max-width: 480px) {
    .setting[b-loy1qmrt9l],
    .setting.large[b-loy1qmrt9l] {
        width: calc(100% - 8px); /* One item per row on mobile screens */
    }

    .preset-button[b-loy1qmrt9l] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.popup-overlay[b-loy1qmrt9l] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-window[b-loy1qmrt9l] {
    background-color: #333333cf;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    width: 60%;
    max-width: 600px;
    max-height: 80%;
    overflow: scroll;
}

.popup-header[b-loy1qmrt9l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.btn-close[b-loy1qmrt9l] {
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.2em;
    color: white;
}

.popup-content[b-loy1qmrt9l] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.popup-input[b-loy1qmrt9l] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #222;
    color: white;
    font-size: 1em;
}

.popup-btn[b-loy1qmrt9l] {
    padding: 10px 20px;
    background-color: #5a5a5a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

    .popup-btn:hover[b-loy1qmrt9l] {
        background-color: #787878;
    }

.agent-set[b-loy1qmrt9l] {
    background-color: #44444473;
    border-radius: 8px;
    margin: 4px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s, transform 0.3s, width 0.3s;
    width: calc(33.3% - 8px);
    position: relative;
    font-size: 7px;
    color: #aeaeae;
    overflow: hidden;
    z-index: 1001;
}

    .agent-set .preTrainedDesc[b-loy1qmrt9l] {
        color: white;
        font-size: 9px;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 11px;
    }

    .agent-set:hover[b-loy1qmrt9l] {
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        /*width: calc(50% - 8px);*/
        transform: scale(1.4);
        background-color: #344444;
        z-index: 1002;
        transition: box-shadow 0.3s, transform 0.3s, width 0.3s;
    }

        .agent-set:hover .preTrainedDesc[b-loy1qmrt9l] {
            max-height: 500px;
            transition: max-height 0.3s ease 0.15s;
        }
/*
        .agent-set:hover ~ .popup-window {
            overflow: visible;
        }*/

    .agent-set h4[b-loy1qmrt9l] {
        font-weight: bold;
        margin-bottom: 4px;
    }

    .agent-set p[b-loy1qmrt9l] {
        margin: 4px 0;
    }

.btn-select[b-loy1qmrt9l] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-select:hover[b-loy1qmrt9l] {
        background-color: #555555;
    }


.popup-content[b-loy1qmrt9l] {
    margin-top: 20px;
}

.agent-set[b-loy1qmrt9l] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-select[b-loy1qmrt9l] {
    margin-top: 10px;
}

.simDescription[b-loy1qmrt9l] {
    color: #a9aaac;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background-color: #1d2124;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
    .simDescription h4[b-loy1qmrt9l] {
        text-align: center; /* Center-align the title */
        margin-top: 50px;
        margin-bottom: 20px;
        font-size: 22px; /* Larger font size for the title */
    }

    .simDescription .tagline[b-loy1qmrt9l] {
        text-align: center; /* Center-align the tagline */
        font-size: 16px; /* Slightly larger font size for emphasis */
        color: #E0E0E0; /* Light grey color for readability */
        margin-bottom: 100px; /* More space after the tagline */
        font-style: italic; /* Italicize the tagline */
    }


    .simDescription h5[b-loy1qmrt9l], .simDescription h6[b-loy1qmrt9l] {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .simDescription p[b-loy1qmrt9l] {
        font-size: 14px; 
        line-height: 1.6; 
        margin-bottom: 15px;
    }

    .simDescription ol[b-loy1qmrt9l] {
        padding-left: 20px; 
        list-style-type: decimal; 
    }

    .simDescription li[b-loy1qmrt9l] {
        margin-bottom: 10px;
    }


/* Container to hold the buttons */
.button-container[b-loy1qmrt9l] {
    position: fixed;
    top: 80px;
    right: -40px;
    width: 140px;
    height: 470px;
    z-index: 10;
    transition: all 0.3s ease-out;
}

    .button-container:hover .leftColumn[b-loy1qmrt9l] {
        right: 270px;
    }

    .button-container:hover .rightColumn[b-loy1qmrt9l] {
        right: 60px;
    }

    .button-container:hover[b-loy1qmrt9l] {
        width: 480px;
        height: 470px;
    }

.floating-button[b-loy1qmrt9l] {
    position: absolute; /* Absolute positioning within the container */
    z-index: 10;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease-out;
}

/* Specific button placements */
.start-button[b-loy1qmrt9l] {
    top: 240px;
    right: -70px;
    background-color: #4CAF50;
}

.simpleStart-button[b-loy1qmrt9l] {
    top: 240px;
    right: -250px;
    background-color: #4CAF50;
}

.superSimpleStart-button[b-loy1qmrt9l]{
    top: 300px;
    right: -250px;
    background-color: #4CAF50;
}

.uploadGenomes-button[b-loy1qmrt9l] {
    top: 300px;
    right: -70px;
    background-color: #4CAF50;
}

.selectPretrained-button[b-loy1qmrt9l] {
    top: 360px;
    right: -70px;
    background-color: #4CAF50;
}

.recoverGenome-button[b-loy1qmrt9l] {
    top: 360px;
    right: -250px;
    background-color: #FFC107;
}

.killSim-button[b-loy1qmrt9l] {
    top: 420px;
    right: -70px;
    background-color: #de1111;
}

.saveKill-button[b-loy1qmrt9l] {
    top: 420px;
    right: -250px;
    background-color: #de1111;
}

.update-button[b-loy1qmrt9l] {
    top: 0;
    right: -250px;
    background-color: #0d385b;
}

.toggleLeader-button[b-loy1qmrt9l] {
    top: 60px;
    right: -250px;
    background-color: #0d385b;
}

.toggleRays-button[b-loy1qmrt9l] {
    top: 60px;
    right: -70px;
    background-color: #0d385b;
}

.toggleNN-button[b-loy1qmrt9l] {
    top: 60px;
    right: -70px;
    background-color: #0d385b;
}

.viewGenome-button[b-loy1qmrt9l]  {
    top: 120px;
    right: -70px;
    background-color: #0d385b;
}

.logGenomes-button[b-loy1qmrt9l] {
    top: 120px;
    right: -250px;
    background-color: #0d385b;
}

.skip10Gen-button[b-loy1qmrt9l] {
    top: 180px;
    right: -70px;
    background-color: #0d385b;
}

.skip100Gen-button[b-loy1qmrt9l] {
    top: 180px;
    right: -250px;
    background-color: #0d385b;
}

.retrieveGenomes-button[b-loy1qmrt9l] {
    top: 0px;
    right: -70px;
    background-color: #0d385b;
}

/*.settings-preset-Buttons {
}

.preset-button {
    z-index: 10;
    background-color: #0d385b;
    color: white;
    border: none;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}*/
/* /Pages/GeneralCalc.razor.rz.scp.css */
/* Navbar Styles */
.navbarConverter[b-so10mxksr0] {
    overflow: visible;
    background-color: #333;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .navbarConverter .outerMenuList[b-so10mxksr0] {
        flex: 1;
        display: flex;
    }

    .navbarConverter ul[b-so10mxksr0] {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .navbarConverter li[b-so10mxksr0] {
        position: relative;
    }

    .navbarConverter > ul > li[b-so10mxksr0] {
        float: left;
    }

    .navbarConverter .catTitleNav[b-so10mxksr0] {
        overflow: visible;
        display: block;
        color: #f2f2f2;
        background-color: #333;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        .navbarConverter .catTitleNav:hover[b-so10mxksr0] {
            background-color: #ddd;
            color: black;
        }

    .navbarConverter .calcNameNavTop[b-so10mxksr0] {
        width: 100%;
        display: block;
        color: #f2f2f2;
        background-color: #333;
        text-align: center;
        padding: 14px 16px;
        text-decoration: solid;
    }

    .navbarConverter .calcNameNav[b-so10mxksr0] {
        width: 100%;
        display: block;
        color: #f2f2f2;
        background-color: #333;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        .navbarConverter .calcNameNav:hover[b-so10mxksr0] {
            background-color: #ddd;
            color: black;
        }

/* Dropdown Content */
.dropdown[b-so10mxksr0] {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.dropdown-content[b-so10mxksr0] {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    z-index: 10001;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

    .dropdown-content li[b-so10mxksr0] {
        float: none;
    }

    .dropdown-content a[b-so10mxksr0] {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover[b-so10mxksr0] {
            background-color: #f1f1f1;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content[b-so10mxksr0] {
    display: block;
}

/* Toggle Navbar Button */
.toggle-navbar[b-so10mxksr0] {
    background-color: #0d385b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 10px;
    border-radius: 5px;
}

    .toggle-navbar:hover[b-so10mxksr0] {
        background-color: #005a9e;
    }
/* /Pages/MainContent.razor.rz.scp.css */
body[b-5p3w91mkmj] {
}
/*
    Alternative Kudos colours with more contrast:
    #0E76BC light
    #1c5380 Dark

*/

.mainContentContainer[b-5p3w91mkmj] {
    position: relative !important;
}

.mainTable[b-5p3w91mkmj] {
    height: calc(100vh - 156px) !important;
    width: 100%;
    /*overflow: auto !important;*/
}

.site-title[b-5p3w91mkmj] {
    position: relative;
    display: inline-block;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5), 2px 3px 5px rgba(0, 0, 0, 0.7);
}

/*    .site-title::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -5px;
        height: 5px;
        background-color: #0d385b;
    }*/

    .site-title span[b-5p3w91mkmj] {
        position: relative;
        display: inline-block;
    }

    .title-span-1[b-5p3w91mkmj]::after,
    .title-span-2[b-5p3w91mkmj]::after,
    .title-span-3[b-5p3w91mkmj]::after,
    .title-span-4[b-5p3w91mkmj]::after,
    .title-span-5[b-5p3w91mkmj]::after,
    .title-span-6[b-5p3w91mkmj]::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -1px;
        height: 4px;
        background-color: #0d385b;
    }

    .title-span-1[b-5p3w91mkmj]::after {
        left: -6px;
        right: 1px;
    }

    .title-span-2[b-5p3w91mkmj]::after {
        left: -10px;
        right: -6px;
    }

    .title-span-3[b-5p3w91mkmj]::after {
        left: -6px;
        right: 2px;
    }

    .title-span-4[b-5p3w91mkmj]::after {
        left: 10px;
        right: -6px;
    }

    .title-span-5[b-5p3w91mkmj]::after {
        left: -6px;
        right: -6px;
    }

    .title-span-6[b-5p3w91mkmj]::after {
        left: -6px;
        right: -6px;
    }


.kudosText[b-5p3w91mkmj] {
    color: #1c5380;
}
    .kudosText .text-muted[b-5p3w91mkmj] {
        background-color: #212529;
        padding: 2px;
        border-radius: 5px;
        color: #0d385b !important;
    }

.kudosTextInline[b-5p3w91mkmj] {
    /*color: black;*/
    color: #1c5380;
    padding-top: 40px;
}
    .kudosTextInline .text-muted[b-5p3w91mkmj] {
        border-radius: 5px;
        color: #0d385b !important;
    }

.kudosTextTop[b-5p3w91mkmj] {
    /*color: black;*/
    color: #1c5380;
    margin-top: -10px;
    margin-bottom: 15px;
}
    /*

        background-color: #0a0b0b46;
*/
    .kudosTextTop .text-muted[b-5p3w91mkmj] {
        border-radius: 5px;
        color: #0d385b !important;
    }

.kudosTextToggle[b-5p3w91mkmj] {
    display: flex;
    margin-top: 5px;
    align-items: center;
    justify-content: flex-end;
    color: #1c5380 !important;
}

    .kudosTextToggle label[b-5p3w91mkmj] {
        margin-right: 50px;
        padding-top: 0px;
    }

    .kudosTextToggle .inputCheck[b-5p3w91mkmj] {
        margin-right: 0px;
        padding-top: 0px;
    }

.home-container[b-5p3w91mkmj] {
    height: calc(100vh - 100px);
    overflow: hidden;
}

.card-column[b-5p3w91mkmj] {
    margin-top: 1.25rem;
    margin-bottom: 50rem;
}

.card-container[b-5p3w91mkmj] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
    height: 100%;
    max-height: 400px;
    min-width: 180px;
    margin-right: 20px !important;
    margin-left: 20px !important;
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5), 2px 3px 5px rgba(0, 0, 0, 0.8);
}

.card[b-5p3w91mkmj] {
    display: flex;
    flex-direction: column;
    background-color: #212529;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #c1c4c7;
    z-index: 1;
    max-width: 100%;
    padding: 1rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.card-body[b-5p3w91mkmj] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem;
}

.card-title[b-5p3w91mkmj] {
    color: #f8f9fa;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-text[b-5p3w91mkmj] {
    margin-bottom: 1.25rem;
    color: #e0e0e0;
    flex: 1;
}

.card-outline[b-5p3w91mkmj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    z-index: 0;
}

.card:hover[b-5p3w91mkmj] {
    transform: translate(-5px, -5px);
    background-color: #363a3e;
    cursor: pointer;
}

.card-link[b-5p3w91mkmj] {
    width: 75%;
    color: #f8f9fa;
    transition: all 0.3s ease;
    background-color: #0d385b;
    border-color: #f8f9fa;
    margin-top: 2px;
}

    .card-link:hover[b-5p3w91mkmj] {
        color: #212529;
        background-color: #f8f9fa;
        text-decoration: none;
    }

@media (max-width: 450px) {
    .card-column[b-5p3w91mkmj] {
        margin-bottom: 50rem;
    }
    .card[b-5p3w91mkmj] {
        padding: 0px;
    }
}

@media (max-height: 650px) {
    .homeImg[b-5p3w91mkmj] {
        display: none !important;
    }

    .card-text[b-5p3w91mkmj] {
        margin-bottom: 0rem;
    }
}

@media (max-height: 789px) {
    .card-column[b-5p3w91mkmj] {
        margin-top: 0rem;
    }

    .card[b-5p3w91mkmj] {
        padding: 0.5rem;
    }

    .card-body[b-5p3w91mkmj] {
        padding: 0.5rem;
    }

    .card-container[b-5p3w91mkmj] {
        height: 80%;
    }
}

.carousel-container[b-5p3w91mkmj] {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.cards-wrapper[b-5p3w91mkmj] {
    display: flex;
  /*  transition: transform 0.3s ease;*/
}

/* You might need to adjust the card width or margin based on your needs */
.card-container[b-5p3w91mkmj] {
    flex: 0 0 auto;
    margin-right: 1rem;
}

/* Pulse Effect */
@keyframes pulse-b-5p3w91mkmj {
    0%, 100% {
        box-shadow: 0 0 10px rgba(13, 56, 91, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(13, 56, 91, 1), 0 0 30px rgba(13, 56, 91, 1);
    }
}

@keyframes borealisBar-b-5p3w91mkmj {
    0% {
        left: 0%;
        right: 100%;
        width: 0%;
    }

    10% {
        left: 0%;
        right: 75%;
        width: 25%;
    }

    80% {
        right: 0%;
        left: 80%;
        width: 20%;
    }

    100% {
        left: 100%;
        right: 0%;
        width: 0%;
    }
}

.dotted-lines[b-5p3w91mkmj] {
    position: relative;
}

    .dotted-lines *[b-5p3w91mkmj] {
        z-index: -1;
    }

.inlineBTN[b-5p3w91mkmj] {
    position: absolute;
    padding: .05rem .5rem;
    font-size: .85rem;
    right: 0px;
    top: 0px;
    z-index: 0;
}

.homeImg[b-5p3w91mkmj] {
    position: relative;
    display: inline-block;
    border-radius: 0px;
}

    .homeImg[b-5p3w91mkmj]::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(45deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 30%), 
                    linear-gradient(135deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 30%), 
                    linear-gradient(225deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 30%), 
                    linear-gradient(315deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 30%);
        pointer-events: none;
    }

    .homeImg[b-5p3w91mkmj]::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 45%), 
            linear-gradient(90deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 45%), 
            linear-gradient(180deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 45%), 
            linear-gradient(270deg, rgba(33,37,41,1) 0%, rgba(33,37,41,0) 45%);
        pointer-events: none;
    }

@media (max-width: 450px) {
    .home-image-container[b-5p3w91mkmj] {
        max-width: 80%;
        margin: auto;
    }
}

input[b-5p3w91mkmj] {
    border-color: #6c757d;
}

    input[b-5p3w91mkmj]::-webkit-input-placeholder {
        color: #6c757d;
    }

    input[b-5p3w91mkmj]::-moz-placeholder {
        color: #6c757d;
    }

    input:-ms-input-placeholder[b-5p3w91mkmj] {
        color: #6c757d;
    }

    input:-moz-placeholder[b-5p3w91mkmj] {
        color: #6c757d;
    }

/* width */
/*::-webkit-scrollbar {
    width: 5px;
    border-radius: 0px;
}*/

/* Track */
/*::-webkit-scrollbar-track {
    background: #212529;
    border-radius: 0px;
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: #6c757d;
    border-radius: 5px;
}*/

    /* Handle on hover */
    /*::-webkit-scrollbar-thumb:hover {
        background: #555;
    }*/
/* /Pages/NavAssistant.razor.rz.scp.css */
body[b-vd1spp6ahs] {
    color: #f8f9fa;
    background-color: #212529;
}

.assistantDiv[b-vd1spp6ahs] {
    padding-top: 10px;
    overflow: scroll !important;
    height: calc(100vh - 75px);
    width: 100%;
}

.headers[b-vd1spp6ahs] {
    font-size: 22px;
    font-weight: bold;
    color: #f8f9fa;
    text-shadow: 2px 2px 4px #000000;
}

.queryBox[b-vd1spp6ahs] {
    border: 2px hidden #0d385b;
    border-radius: 5px 0px 0px 5px;
    background: #212529;
    color: #f8f9fac4;
    margin-right: 2px;
    transition: all 0.3s ease;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3), 0px 5px 15px rgba(6, 28, 46, 0.2), 0px 7px 20px rgba(13, 56, 91, 0.1);
}

    .queryBox:hover[b-vd1spp6ahs] {
        /*border: 1px solid #0d385b;*/
        background-color: rgba(255,255,255,0.1);
        color: #e0e0e0;
    }

.search-container[b-vd1spp6ahs], .result-container[b-vd1spp6ahs], .output-container[b-vd1spp6ahs] {
    height: 100%;
    position: relative;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #212529;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #f8f9fa;
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5), 2px 3px 5px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.search-container:hover[b-vd1spp6ahs], .result-container:hover[b-vd1spp6ahs], .output-container:hover[b-vd1spp6ahs] {
    transform: translate(-3px, -3px);
    background-color: #32373c;
}

.input-group[b-vd1spp6ahs], .btn[b-vd1spp6ahs] {
    border: none;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.output-box[b-vd1spp6ahs], .result-box[b-vd1spp6ahs] {
    height: 60vh;
    overflow-y: auto;
    border: hidden;
    padding: 10px;
    color: #d3d3d3;
    border-radius: 5px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3), 0px 5px 15px rgba(6, 28, 46, 0.2), 0px 7px 20px rgba(13, 56, 91, 0.1);
    background-color: rgba(255,255,255,0.05);
}

    .output-box:hover[b-vd1spp6ahs] {
        background-color: rgba(255,255,255,0.1);
        color: #e0e0e0;
    }

    @media (max-width: 1199px) {
        .output-box[b-vd1spp6ahs], .result-box[b-vd1spp6ahs] {
            height: 28vh;
        }

        .search-container[b-vd1spp6ahs], .result-container[b-vd1spp6ahs], .output-container[b-vd1spp6ahs] {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 2px;
        }
    }

    .linkList[b-vd1spp6ahs] {
    padding: 0 0 0 5px !important;
}

li.objectLinkWrapper[b-vd1spp6ahs] {
    position: relative;
    margin-bottom: 10px;
}

.objectLink[b-vd1spp6ahs] {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #f8f9fa;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4), 1px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.objectLinkOutline[b-vd1spp6ahs] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 5px;
    z-index: 0;
}

.objectLink:hover[b-vd1spp6ahs] {
    transform: translate(-5px, -5px);
    background-color: rgb(196, 196, 196, 0.4);
    cursor: pointer;
}

    .objectLink a[b-vd1spp6ahs] {
        color: #e0e0e0;
        flex-grow: 1;
        padding-top: 6px;
        overflow: hidden; /* Required for ellipsis to work */
        white-space: nowrap; /* Required for ellipsis to work */
        text-overflow: ellipsis; /* This adds the '...' */
    }

        .objectLink a:hover[b-vd1spp6ahs] {
            color: #f8f9fa;
            text-decoration: none;
        }

.listNumber[b-vd1spp6ahs] {
    margin-right: 10px; /* Add some space between the number and the link */
}

button[b-vd1spp6ahs] {
    border-radius: 0px 5px 5px 0px;
    background-color: #0d385b;
    color: #f8f9fa;
    border: none;
    transition: all 0.3s ease; /* Smoother transition for hover effect */
}

    button:hover[b-vd1spp6ahs] {
        background-color: #0d385b;
        color: #e0e0e0;
    }

.card-container[b-vd1spp6ahs] {
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.card-outline[b-vd1spp6ahs] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border: 1px solid #c1c4c7;
    border-radius: 5px;
    z-index: 0;
}

.loaderContiner[b-vd1spp6ahs] {
    margin-top: 50px;
}

/* Invisible scrollbar by default */
[b-vd1spp6ahs]::-webkit-scrollbar {
    width: 5px;
}

[b-vd1spp6ahs]::-webkit-scrollbar-track {
    background: transparent; /* make scrollbar track transparent */
}

[b-vd1spp6ahs]::-webkit-scrollbar-thumb {
    background: transparent; /* make scrollbar thumb transparent */
}
/* /Pages/OvernightMinTemp.razor.rz.scp.css */
.calculator-container[b-18najr6a8w] {
    display: flex;
    gap: 5px;
    padding: 20px;
}

.input-section[b-18najr6a8w] {
    flex: 1;
    display: flex;
    max-width: 350px;
    flex-direction: column;
    gap: 5px;
}

.input-group[b-18najr6a8w] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-field[b-18najr6a8w] {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 260px;
}

input[type="range"][b-18najr6a8w] {
    width: 260px;
}

.calculate-button[b-18najr6a8w] {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 220px;
}

    .calculate-button:hover[b-18najr6a8w] {
        background-color: #0056b3;
    }

.result-section[b-18najr6a8w] {
    margin-top: 50px;
    font-size: 24px;
}

.lookup-table[b-18najr6a8w] {
    width: 50vw;
    border-collapse: collapse;
    margin-top: 20px;
}

    .lookup-table th[b-18najr6a8w], .lookup-table td[b-18najr6a8w] {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }

    .lookup-table th[b-18najr6a8w] {
        background-color: #c7c7c7;
    }

.highlight[b-18najr6a8w] {
    background-color: #ffd700; /* Highlighted cell */
}

.highlight-row[b-18najr6a8w] {
    background-color: #ffe680; /* Highlighted row */
}

.modal-dialog[b-18najr6a8w] {
    max-width: 75vw;
}

.modal[b-18najr6a8w] {
    background-color: rgba(0, 0, 0, 0.9);
}

button[b-18najr6a8w] {
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

    button:hover[b-18najr6a8w] {
        background-color: #0056b3;
    }

img[b-18najr6a8w] {
    background: white;
}

.warning-text[b-18najr6a8w] {
    font-size: 16px;
}
/* /Pages/SearchBar.razor.rz.scp.css */
.searchBar[b-lg7ak5dw7h] {
    z-index: 999 !important;
    text-align: center;
    /* pointer-events: none; */
    position: fixed !important;
    width: 40vw !important;
    max-width: 600px;
    top: 0px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.form-control[b-lg7ak5dw7h] {
    border: hidden;
    border-radius: 10px !important;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3), 0px 1px 10px rgba(0, 0, 0, 0.2);
}

.form-control:hover[b-lg7ak5dw7h] {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.7), 0px 2px 10px rgba(0, 0, 0, 0.5);
}
/* /Pages/WikiBlock.razor.rz.scp.css */
body[b-itjq5dja0i] {
}

.kudosText[b-itjq5dja0i] {
    /*color: black;*/
    color: #1c5380;
}
    /*

*/
    .kudosText .text-muted[b-itjq5dja0i] {
        background-color: #212529;
        padding: 2px;
        border-radius: 5px;
        color: #0d385b !important;
    }

.kudosTextInline[b-itjq5dja0i] {
    /*color: black;*/
    color: #1c5380;
    padding-top: 40px;
}
    /*

        background-color: #0a0b0b46;
*/
    .kudosTextInline .text-muted[b-itjq5dja0i] {
        border-radius: 5px;
        color: #0d385b !important;
    }

.dotted-lines[b-itjq5dja0i] {
    position: relative;
}

    .dotted-lines *[b-itjq5dja0i] {
        z-index: -1;
    }

.inlineBTN[b-itjq5dja0i] {
    position: absolute;
    padding: .05rem .5rem;
    font-size: .85rem;
    right: 0px;
    top: 0px;
    z-index: 0;
}
/* /Pages/WikiBlockNoAuth.razor.rz.scp.css */
body[b-ch55c8erm3] {
}

.kudosText[b-ch55c8erm3] {
    /*color: black;*/
    color: #1c5380;
}
    /*

*/
    .kudosText .text-muted[b-ch55c8erm3] {
        background-color: #212529;
        padding: 2px;
        border-radius: 5px;
        color: #0d385b !important;
    }

.kudosTextInline[b-ch55c8erm3] {
    /*color: black;*/
    color: #1c5380;
    padding-top: 40px;
}
    /*

        background-color: #0a0b0b46;
*/
    .kudosTextInline .text-muted[b-ch55c8erm3] {
        border-radius: 5px;
        color: #0d385b !important;
    }

.dotted-lines[b-ch55c8erm3] {
    position: relative;
}

    .dotted-lines *[b-ch55c8erm3] {
        z-index: -1;
    }

.inlineBTN[b-ch55c8erm3] {
    position: absolute;
    padding: .05rem .5rem;
    font-size: .85rem;
    right: 0px;
    top: 0px;
    z-index: 0;
}
/* /Shared/LoginDisplay.razor.rz.scp.css */
.loginBTN[b-8ep756qwhv] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px !important;
}
.logoutBTN[b-8ep756qwhv] {
    /*position: absolute;
    top: 20px;
    right: 20px;
    width: 50px !important;*/
}
/* /Shared/MainLayout.razor.rz.scp.css */
.body[b-nw8vc4eyyv] {
    overflow: hidden;
}

.page[b-nw8vc4eyyv] {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #c1c4c7 !important;
    overflow: hidden;
    height: 100vh;
}

main[b-nw8vc4eyyv] {
    flex: 1;
    background-image: linear-gradient(155deg, #0d385b 10%, #212529 20%) !important;
    z-index: 98;
}

.main-Nav-Open[b-nw8vc4eyyv] {
    margin-left: 0px;
}

.main-Nav-Closed[b-nw8vc4eyyv] {
    margin-left: 50px;
}

.sidebar[b-nw8vc4eyyv] {
    background-image: linear-gradient(180deg, #0d385b 10%, #212529 70%);
    max-height: 100vh;
    width: 250px;
    z-index: 11;
    padding-right: 0px;
}

.smallNavBar[b-nw8vc4eyyv] {
    margin-right: 20px;
    padding-top: 20px;
    /*align-content: center;*/
    text-align: center;
    background-image: linear-gradient(180deg, #0d385b 10%, #212529 70%);
    /*border-top: 1px solid #212529b2;*/
    position: fixed;
    top: 56px !important;
    left: 0;
    height: 100vh !important;
    width: 50px;
    overflow: visible;
    z-index: 10;
}

.smallNavBar:hover[b-nw8vc4eyyv] {
    z-index: 101;
}

.showSmallNavBar[b-nw8vc4eyyv] {
    display: block;
}

.noSmallNavBar[b-nw8vc4eyyv] {
    display: none;
}

.content[b-nw8vc4eyyv] {
    opacity: 1;
    position: relative !important;
    z-index: 102;
    margin: 0px 10px 0px 0px;
    overflow: scroll;
    background-color: rgba(33, 37, 41, 1) !important;
    border-radius: 20px;
    height: calc(100vh - 70px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

    .content:hover[b-nw8vc4eyyv] {
        position: relative !important;
        box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.7), 0px 5px 10px rgba(0, 0, 0, 0.5);
        /*border: 1px solid rgba(108, 117, 125, 0.2);*/
        /*background-color: rgba(33, 37, 41, 0.9) !important;*/
    }

/*.content-menu-closed {
    padding-left: 10px !important;
}

.content-menu-open {
    padding-left: 10px !important;
}*/

.oi-document[b-nw8vc4eyyv], .oi-person[b-nw8vc4eyyv], .oi-chat[b-nw8vc4eyyv], .oi-info[b-nw8vc4eyyv], .oi-home[b-nw8vc4eyyv] {
/*    font-size: 20px !important;*/
    padding-top: 4px !important;
}

.oi-info[b-nw8vc4eyyv] {
    padding-left: 3px;
    padding-top: 3px;
}

/*.nav-item {
    font-size: 0.3rem;
    padding-bottom: 0.4rem;
}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item ::deep a {
        width: 32px;
        text-shadow: 1px 2px 4px #000000a6 !important;
        color: #d7d7d7;
        border-radius: 50%;
        height: 2rem;
        padding: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        overflow: visible;
        transition: all 0.5s ease-in-out;
    }

        .nav-item ::deep a.active {
            font-size: larger;
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item ::deep a:hover {
            width: 200px;
            background-color: rgba(255,255,255,0.1);
            box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.7), 0px 2px 5px rgba(0, 0, 0, 0.5);
            transform: scale(1.08);
            color: white;
        }

.nav-link-title {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .nav-item ::deep a:hover .nav-link-title {
        opacity: 1;
    }*/

.titleText[b-nw8vc4eyyv] {
    font-size: 1.25rem;
}

.nav-item[b-nw8vc4eyyv] {
    position: relative;
    border-radius: 0px;
    padding: 0.2rem !important;
    margin: 0 auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px #000000d4 !important;
    width: 35px; /* initial width */
    height: 35px; /* set a height to make it a square */
    border: 2px none #6c757d; /* box border */
    /*box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.7), 1px 2px 4px rgba(0, 0, 0, 0.5);*/
    overflow: hidden;
    text-decoration: none; /* remove underline from link */
}

    .nav-item:first-of-type[b-nw8vc4eyyv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-nw8vc4eyyv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-nw8vc4eyyv]  a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .nav-item[b-nw8vc4eyyv]  a.active {
            border-left: 5px solid #6c757d;
        }

    .nav-item:hover[b-nw8vc4eyyv] {
        justify-content: flex-start;
        border-radius: 0px;
       /* border-left: 5px solid #6c757d;*/
        box-shadow: none;
        transform: translate(0px, 0px);
        transition: all 0.5s ease-out;
        background: linear-gradient(to right, #0d385b, #212529);
        width: 300px;
        margin-left: 7px;
        /*border: 2px solid #6f8daa;*/ /* can adjust to your liking */
        /*border-right: none;*/
    }

        .nav-item:hover .nav-link-title[b-nw8vc4eyyv] {
            display: block;
            opacity: 1;
        }

        .nav-item:hover:not(:has(a.active))[b-nw8vc4eyyv] {
            border-left: 5px solid #6c757d;
        }

.nav-link-title[b-nw8vc4eyyv] {
    white-space: nowrap;
    font-size: 1.5rem;
    display: none;
    opacity: 0;
    margin-left: 10px; /* some spacing between the icon and the text */
    transition: opacity 0.5s ease-in-out;
}


.sidebarController-start[b-nw8vc4eyyv] {
    display: none !important;
}

.topBlock[b-nw8vc4eyyv] {
    background-color: #212529;
    width: 100vh;
    text-shadow: 1px 2px 4px #000000a6 !important;
}

.topLeftBlock[b-nw8vc4eyyv] {
    padding-top: 0px;
    margin-left: -30px;
}

.menu-toggle[b-nw8vc4eyyv] {
    margin-top: 21px;
    margin-left: -23px;
}

.logindisp[b-nw8vc4eyyv] {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.logindispSmall[b-nw8vc4eyyv] {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.userNameDisp[b-nw8vc4eyyv] {
    z-index: 999;
    height: 20px;
    position: fixed;
    right: 25px;
    bottom: 20px;
}

.homeImg[b-nw8vc4eyyv] {
    margin-top: -4px;
    position: relative;
    display: inline-block !important;
    border-radius: 5px;
    overflow: hidden;
}

.top-row[b-nw8vc4eyyv] {
    /*border-bottom: 1px solid #0d385b;*/
    background-image: linear-gradient(90deg, #0d385b 50%, #212529 90%);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 1 !important;
    position: static !important;
}

    .top-row[b-nw8vc4eyyv]  a, .top-row[b-nw8vc4eyyv]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-nw8vc4eyyv]  a:hover, .top-row[b-nw8vc4eyyv]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-nw8vc4eyyv]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }
/*
@media (max-width: 600px) {
    .sidebarController-max {
        width: 50vw !important;
    }
}*/

@media (max-width: 559px) {
    .top-row-menu-open[b-nw8vc4eyyv] {
        background-image: none !important;
        background-color: #0d385b !important;
    }

    #topLeftText[b-nw8vc4eyyv] {
        margin-left: 0px !important;
    }

    .sidebarController-max[b-nw8vc4eyyv] {
        width: 100vw !important;
    }

    .contentHider[b-nw8vc4eyyv] {
        display: none;
    }
}

@media (max-width: 789.98px) {
    .page[b-nw8vc4eyyv] {
        flex-direction: row;
    }

    .top-row:not(.auth)[b-nw8vc4eyyv] {
        display: none;
    }

    .sidebar[b-nw8vc4eyyv] {
        position: sticky;
        top: 0;
        /*height: 100vh-56px;*/
        /*display: none;*/
    }

    .sidebarController[b-nw8vc4eyyv] {
        /* animation: hideNavbar 0.3s ease-in-out forwards;
        width: 0px; */
    }

    .top-row[b-nw8vc4eyyv] {
        position: sticky;
        top: 0;
        z-index: 1 !important;
    }

    .logindispSmall[b-nw8vc4eyyv] {
        margin-left: 0px;
        width: 100%;
        justify-content: flex-end;
    }

    .internalWiki[b-nw8vc4eyyv] {
        display: none;
    }

    .topBlock[b-nw8vc4eyyv] {
        width: calc(100vw - 550px);
        height: 100%;
    }

    .top-row.auth[b-nw8vc4eyyv] {
        justify-content: flex-end;
        margin-left: 0px;
    }

    .top-row[b-nw8vc4eyyv]  a, .top-row[b-nw8vc4eyyv]  .btn-link {
        margin-left: 0;
    }
}

@media (max-width: 1000px) {
    .top-row.auth[b-nw8vc4eyyv] {
        justify-content: flex-end;
        margin-left: -250px;
    }

    .logindisp[b-nw8vc4eyyv] {
        margin-left: 200px;
        justify-content: flex-end;
        width: 100%;
    }

    .logindispSmall[b-nw8vc4eyyv] {
        justify-content: flex-end;
        width: 100%;
    }
}

@media (min-width: 790px) {
    .page[b-nw8vc4eyyv] {
        flex-direction: row;
    }

    .topBlock[b-nw8vc4eyyv] {
        width: calc(100vw - 550px);
        height: 100%;
    }

    .sidebar[b-nw8vc4eyyv] {
        position: sticky;
        top: 0;
    }

    .sidebarController[b-nw8vc4eyyv] {
        /* animation: showNavbar 0.3s ease-in-out forwards !important; */
    }

    .top-row[b-nw8vc4eyyv] {
        position: sticky;
        top: 0;
        z-index: 1 !important;
        margin-left: -250px;
    }

        .top-row.auth[b-nw8vc4eyyv]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-nw8vc4eyyv], article[b-nw8vc4eyyv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#navToggle[b-nw8vc4eyyv] {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 97;
}

#topLeftText[b-nw8vc4eyyv] {
    text-shadow: 2px 3px 3.5px #000000d6 !important;
    font-weight: 500;
    font-size: 2rem !important;
    position: fixed;
    top: 2px;
    left: 45px;
    margin-left: 10px;
    color: #6c757d;
    z-index: 97;
}

    #topLeftText:hover[b-nw8vc4eyyv] {
        color: #8b939a;
        cursor: pointer;
    }

.topLeftTextMuted[b-nw8vc4eyyv] {
    color: #56667475;
}

input[type="checkbox"][b-nw8vc4eyyv] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-check-label[b-nw8vc4eyyv] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.form-check-icon[b-nw8vc4eyyv] {
    position: absolute;
    font-size: 1.5rem;
    top: 0px;
    left: 0px;
    margin-top: -5px;
    margin-left: -5px
}

.icon[b-nw8vc4eyyv] {

}

    .icon:hover[b-nw8vc4eyyv] {
        /*box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.7), 0px 2px 5px rgba(0, 0, 0, 0.5);*/
        /*transform: scale(1.08);*/
        color: #8b939a;
    }

.rotateRight[b-nw8vc4eyyv] {
    transition: transform 0.3s ease-in-out;
    transform: rotate(0deg);
}

.rotateLeft[b-nw8vc4eyyv] {
    transition: transform 0.3s ease-in-out;
    transform: rotate(-180deg);
}

.navHider[b-nw8vc4eyyv] {
    animation: hideNavbar-b-nw8vc4eyyv 0.3s ease-in-out forwards;
}

.navShower[b-nw8vc4eyyv] {
    animation: showNavbar-b-nw8vc4eyyv 0.3s ease-in-out forwards;
}

@keyframes hideNavbar-b-nw8vc4eyyv {
    0% {
        transform: translate(0px, 0px);
        visibility: visible;
        width: 250px;
    }

    50% {
    }

    99% {
        visibility: visible;
    }

    100% {
        transform: translate(-250px, 0px);
        visibility: hidden;
        width: 0px;
    }
}

@keyframes showNavbar-b-nw8vc4eyyv {
    0% {
        transform: translate(-250px, 0px);
        width: 0px;
    }

    50% {
    }

    100% {
        transform: translate(0px, 0px);
        visibility: visible;
        width: 250px;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
body[b-nz0al26j3x] {
    /*
    overflow: hidden;
    */
    background: #212529;
}

.navbar-toggler[b-nz0al26j3x] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-nz0al26j3x] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.nav-container[b-nz0al26j3x] {
    height: 100%;
}

.nav-container-no-touch[b-nz0al26j3x] {
    overflow: hidden;
}

.nav-container-touch[b-nz0al26j3x] {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch !important;
}


#nav-container[b-nz0al26j3x] {
    /*border-top: 1px solid #212529b2;*/
    position: relative;
    height: 100%;
    width: 100%;
}

.text-muted[b-nz0al26j3x] {
    text-shadow: 1px 2px 4px #00000078;
}

nav[b-nz0al26j3x] {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
}

.nav-menu[b-nz0al26j3x] {
    position: absolute;
    top: 0;
    width: 100%;
}

.oi[b-nz0al26j3x] {
    padding: 2px 0px 0px 0px !important;
    margin: 0px !important;
    height: 100%;
}

.item-fader[b-nz0al26j3x] {
   /* perspective: 500px;
    opacity: 0;
    transform: scale(0.7); 
    translateY(-50%);*/
}

.divider[b-nz0al26j3x]{
    border-width: 2px !important;
}

.titleText[b-nz0al26j3x] {
    font-weight: 500;
    font-size: 1.2rem !important;
}

.titleTextMenu[b-nz0al26j3x] {
    margin: -5px 0px 5px 0px !important;
    width: 100%;
    text-align: left;
    font-size: x-large !important;
    font-weight: 700;
    text-shadow: 1px 2px 4px #000000d6 !important;
}

.typeText[b-nz0al26j3x] {
    font-weight: 500;
    font-size: 1.2rem !important;
    /*margin: 1rem 1rem 0 1rem;*/
}

.sectionText[b-nz0al26j3x] {
    font-weight: 500;
    font-size: 0.95rem !important;
}

.subSectionText[b-nz0al26j3x] {
    font-weight: 500;
    font-size: 0.85rem !important;
}

.oi-caret-bottom[b-nz0al26j3x] {
    margin-top: 4px;
}

.oi[b-nz0al26j3x] {
    margin-top: auto;
}

navlink[b-nz0al26j3x] {
    margin-left: -10px !important;
}

.menuLink[b-nz0al26j3x] {

}

.fade-in[b-nz0al26j3x] {
    opacity: 0;
    animation: fadeIn-b-nz0al26j3x 0.5s ease-in forwards;
}

.fade-out[b-nz0al26j3x] {
    opacity: 1;
    animation: fadeOut-b-nz0al26j3x 0.5s ease-in forwards;
}

@keyframes fadeIn-b-nz0al26j3x {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut-b-nz0al26j3x {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.navbar-brand[b-nz0al26j3x] {
    font-size: 1.1rem;
}

.navSubContainer[b-nz0al26j3x] {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    margin: 0 1rem 0rem 1rem;
    border-radius: 5px;
}

.hide[b-nz0al26j3x] {
    animation: hideSubContiner-b-nz0al26j3x 0.2s ease-in-out forwards;
}

.show[b-nz0al26j3x] {
    animation: showSubContiner-b-nz0al26j3x 0.5s ease-in-out forwards;
}

@keyframes hideSubContiner-b-nz0al26j3x {
    0% {
        background-color: rgba(0, 0, 0, 0.3);
    }

    10% {
        background-color: rgba(0, 0, 0, 0.1);
    }

    100% {
        background-color: rgba(0, 0, 0, 0);
    }
}

@keyframes showSubContiner-b-nz0al26j3x {
    0% {
        background-color: rgba(0, 0, 0, 0);
        max-height: 56px
    }

    50% {
    }

    100% {
        background-color: rgba(0, 0, 0, 0.3);
        max-height: 500px;
    }
}

.oi[b-nz0al26j3x] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.auto-scroll[b-nz0al26j3x] {
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    /*scroll-snap-type: y mandatory;
    scroll-padding: 20px;*/
}

    .auto-scroll .navSubContainer[b-nz0al26j3x] {
        /*scroll-snap-align: center;*/
    }

.dropdown-divider[b-nz0al26j3x] {
    margin-top: -0px;
}

.nav-item[b-nz0al26j3x] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-nz0al26j3x] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-nz0al26j3x] {
        padding-bottom: 1rem;
    }

    .nav-item[b-nz0al26j3x]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 2rem;
        display: flex;
        align-items: center;
        line-height: 2rem;
    }

        .nav-item[b-nz0al26j3x]  a.active {
            font-size: larger;
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-nz0al26j3x]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-nz0al26j3x] {
        display: none;
    }

    .collapse[b-nz0al26j3x] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

.popupTip[b-nz0al26j3x] {
    position: absolute;
    padding: 3px;
    height: 110px;
    width: 28px;
    display: none;
    color: #f5f5f5; 
    border-radius: 5px;
    z-index: 999;
    pointer-events: none;
}

    .popupTip .popMessage[b-nz0al26j3x] {
        position: absolute;
        padding: 2px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
        background-color: rgba(0, 0, 0, 0.7); 
        color: #f5f5f5;
        width: 160px;
        top: 45px;
        left: -70px;
    }

.up-arrow[b-nz0al26j3x],
.down-arrow[b-nz0al26j3x] {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: transparent;
}

.up-arrow[b-nz0al26j3x] {
    top: -2px;
    border-bottom-color: #f5f5f5;
    animation: bounceUp-b-nz0al26j3x 1s infinite;
}

.down-arrow[b-nz0al26j3x] {
    top: 90px;
    border-top-color: #f5f5f5;
    animation: bounceDown-b-nz0al26j3x 1s infinite;
}

@keyframes bounceUp-b-nz0al26j3x {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes bounceDown-b-nz0al26j3x {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* width */
/*::-webkit-scrollbar {
    background: #212529;
    width: 5px;
    border-radius: 0px;
    margin-top: 0px !important;
    margin-bottom: -50px !important;
    padding: 0px !important;
    height: 100%;
    z-index: 999;
}*/

/* Track */
/*::-webkit-scrollbar-track {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding: 0px !important;
    height: 100%;
    background: #212529;
    border-radius: 0px;
    z-index: 999;
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}*/

    /* Handle on hover */
    /*::-webkit-scrollbar-thumb:hover {
        background: #555;
    }*/
