/* /Pages/Chat.razor.rz.scp.css */
/* /Pages/Files.razor.rz.scp.css */
/* /Pages/Index.razor.rz.scp.css */
.portal-links[b-tr3331vzsv] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.link-item button[b-tr3331vzsv] {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer; /* Makes it clear the button is clickable */
}
/* /Pages/Login.razor.rz.scp.css */
/* /Pages/Upload.razor.rz.scp.css */

.custom-file-upload[b-0ziczco1jw] {
    display: inline-block;
    padding: 8px 20px;
    cursor: pointer;
    color: #fff;
    background-color: #007bff;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.custom-file-upload:hover[b-0ziczco1jw] {
    background-color: #0056b3;
    border-color: #004085;
}

.file-input[b-0ziczco1jw] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
/* /Shared/ChatWindow.razor.rz.scp.css */
.chat-window[b-uqribl93a8] {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    max-height: 500px;
    overflow-y: auto;
    font-family: 'Arial', sans-serif;
    width: 80%;
    max-width: 1200px;
    min-width: 600px;
    height: 600px;
    margin: 20px auto;
}

@media (max-width: 640px) {
    .chat-window[b-uqribl93a8] {
        width: 95%;
        margin: 10px;
        padding: 5px;
        min-width: unset;
        height: 70vh;
    }
}

@media (min-width: 641px) {
    .chat-window[b-uqribl93a8] {
        height: 60vh;
    }
}

.markdown-style[b-uqribl93a8] {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}


.modal[b-uqribl93a8] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000;
}

.icon-button[b-uqribl93a8] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #0a53be;
    padding: 8px;
    border-radius: 50%;
    margin-left: 10px; /* Adjusted margin for better alignment next to other elements */
    z-index: 2; /* Ensure it's above other elements */
}
/* /Shared/InputBar.razor.rz.scp.css */
@media (max-width: 640px) {
    .textarea-container[b-cn4stoglru] {
        flex-direction: row; /* Maintain a row direction to keep elements side by side */
        padding: 0; /* Remove padding to reduce space */
        margin-top: 5px; /* Maintain minimal top margin */
        align-items: center; /* Center-align the elements vertically */
        width: 100%; /* Ensure full width to use maximum space */
    }

    .input-textarea[b-cn4stoglru] {
        flex-grow: 1; /* Allow the textarea to take available space */
        margin-right: 0; /* Remove any right margin */
        padding: 8px; /* Consistent padding for better touch interaction */
        border-right: 0; /* Remove right border if present to merge visually with the button */
        width: calc(100% - 45px); /* Calculate width minus button width */
    }

    .send-button[b-cn4stoglru] {
        width: 40px; /* Fixed width for the send button */
        height: 40px; /* Fixed height to match the input field */
        padding: 0; /* Reduce padding to zero */
        margin-left: 5px; /* Small margin to separate from the input field */
        flex-shrink: 0; /* Prevent the button from shrinking */
    }
}



.textarea-container[b-cn4stoglru] {
    display: flex;      /* Enables flexible layouts */
    flex-direction: row; /* Aligns children (input and button) in a row */
    align-items: center; /* Centers the children vertically */
    padding: 5px;       /* Padding inside the container */
    margin-top: 10px;   /* Space above the container */
    width: 100%;        /* Container takes full width of its parent */
    background-color: #fff; /* Background color */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional shadow for depth */
}

.input-textarea[b-cn4stoglru] {
    flex-grow: 1;
    height: 40px;
    border: none; /* No more border */
    outline: none;
    padding-left: 8px; /* Padding only on the left */
    padding-right: 0; /* Remove padding on the right to make space for the button */
    margin-right: 0; /* No space between the textarea and the button */
}

.send-button[b-cn4stoglru] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #0a53be;
    padding: 8px;
    border-radius: 50%;
    margin-left: -40px; /* Negative margin to pull the button inside the textarea */
    z-index: 2; /* Ensure it's above the textarea */
}
/* /Shared/LoadingComponent.razor.rz.scp.css */
.loading-modal[b-1n95eamvon] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it's on top of other content */
}

.loading-spinner-component[b-1n95eamvon] {
    width: 100px;
    height: 100px;
}

.loading-progress-text-component[b-1n95eamvon] {
    color: white;
    margin-top: 20px;
    font-size: 1.5rem;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-qqy35fx2cn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-qqy35fx2cn] {
    flex: 1;
}

.sidebar[b-qqy35fx2cn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-qqy35fx2cn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-qqy35fx2cn]  a, .top-row[b-qqy35fx2cn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-qqy35fx2cn]  a:hover, .top-row[b-qqy35fx2cn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-qqy35fx2cn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-qqy35fx2cn] {
        display: none;
    }

    .top-row.auth[b-qqy35fx2cn] {
        justify-content: space-between;
    }

    .top-row[b-qqy35fx2cn]  a, .top-row[b-qqy35fx2cn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-qqy35fx2cn] {
        flex-direction: row;
    }

    .sidebar[b-qqy35fx2cn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-qqy35fx2cn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-qqy35fx2cn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-qqy35fx2cn], article[b-qqy35fx2cn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hw2fv9jkxv] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-hw2fv9jkxv] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hw2fv9jkxv] {
    font-size: 1.1rem;
}

.oi[b-hw2fv9jkxv] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-hw2fv9jkxv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-hw2fv9jkxv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-hw2fv9jkxv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-hw2fv9jkxv]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-hw2fv9jkxv]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-hw2fv9jkxv]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-hw2fv9jkxv] {
        display: none;
    }

    .collapse[b-hw2fv9jkxv] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-hw2fv9jkxv] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/SimpleModal.razor.rz.scp.css */
.modal-overlay[b-c86luls5mb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-c86luls5mb] {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-button[b-c86luls5mb] {
    float: right;
    border: none;
    background: none;
    font-size: 1.2rem;
}
