@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* _content/gptv2mgr/Components/GlobalErrorBox.razor.rz.scp.css */
.error-box[b-okppv1pj1w] {
    position: fixed;
    bottom: 0%;
    width: fit-content;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #f44336;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.error-message[b-okppv1pj1w] {
    margin-right: 10px;
}

.warning-box[b-okppv1pj1w] {
    position: fixed;
    bottom: 0%;
    width: fit-content;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #fff3cd;
    color: #664d03;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* _content/gptv2mgr/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-e9pwvffds2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-e9pwvffds2] {
    flex: 1;
}

.sidebar[b-e9pwvffds2] {
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
}

.top-row[b-e9pwvffds2] {
    background-color: rgb(61, 61, 61);
    color: white;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.55rem;/*need to match up with side nav*/
    display: flex;
    align-items: center;
}

    .top-row[b-e9pwvffds2]  a, .top-row .btn-link[b-e9pwvffds2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-e9pwvffds2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-e9pwvffds2] {
        display: none;
    }

    .top-row.auth[b-e9pwvffds2] {
        justify-content: space-between;
    }

    .top-row a[b-e9pwvffds2], .top-row .btn-link[b-e9pwvffds2] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-e9pwvffds2] {
        flex-direction: row;
    }

    .sidebar[b-e9pwvffds2]  { 
        min-width:250px;
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-e9pwvffds2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-e9pwvffds2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/gptv2mgr/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-iagb7nz2q6] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    /*position: absolute;*/
    top: 0.5rem;
    /*right: 1rem;*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-iagb7nz2q6] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-iagb7nz2q6] {
    height: 3.5rem;
    background-color: rgb(61, 61, 61);
    color: white;
}

.navbar-brand[b-iagb7nz2q6] {
    font-size: 1.1rem;
}

.oi[b-iagb7nz2q6] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-iagb7nz2q6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-iagb7nz2q6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-iagb7nz2q6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-iagb7nz2q6]  a {
        background-color: rgb(200, 200, 200);
        color: red;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        /*line-height: 3rem;*/
    }

        .nav-item[b-iagb7nz2q6]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: red;
        }

        .nav-item[b-iagb7nz2q6]  a:hover {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

@media (min-width: 660px) {
    .navbar-toggler[b-iagb7nz2q6] {
        display: none;
    }
    .nav[b-iagb7nz2q6] {
        /* Never collapse the sidebar for wide screens */
        display: block !important;
    }
}
/* _content/gptv2mgr/Components/Loading.razor.rz.scp.css */
@keyframes flash-b-p37qj5c831 {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.loading[b-p37qj5c831] {
    animation: flash-b-p37qj5c831 1s linear infinite;
    font-weight: bold;
    margin: 1rem;
    place-self: center;
}
/* _content/gptv2mgr/Components/Pages/Index.razor.rz.scp.css */
img[b-ynehun6an2] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* _content/gptv2mgr/Components/Pages/UserFeedbackPages/UserFeedbackGrid.razor.rz.scp.css */
[b-41zvda4sto] td.description-column {
    width: 60% !important;
    max-width: 100px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-wrap: normal !important;
}

[b-41zvda4sto] .table-container {
    width: 100%;
    overflow-x: auto;
}

[b-41zvda4sto] tbody tr:has(.thumbs-down) {
    background-color: #ffebee !important;
}


[b-41zvda4sto] tbody tr:has(.thumbs-up) {
    background-color: white !important;
}

.thumbs-down[b-41zvda4sto] {
    text-align: center;
}
.thumbs-up[b-41zvda4sto] {
    text-align: center;
}
/* _content/gptv2mgr/Components/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-j12hkdd4s9] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-j12hkdd4s9] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-j12hkdd4s9]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-j12hkdd4s9] {
    visibility: visible;
}
