/* _content/GatewayUpdaterApp/Pages/Index.razor.rz.scp.css */
/* Basic styling for the textarea */
#responsiveTextbox[b-1lwibtb1pn] {
    width: 80vw; /* take up 80% of the viewport width */
    height: 50vh; /* take up 50% of the viewport height */
    resize: none; /* disable manual resize */
    overflow: auto; /* allow scrollbar if content exceeds the textarea size */
    word-wrap: break-word; /* ensures the text breaks and wraps onto the next line */
}

/* Example media query for smaller screens */
@media (max-width: 600px) {
    #responsiveTextbox[b-1lwibtb1pn] {
        width: 90vw; /* adjust width as per your needs */
        height: 60vh; /* adjust height as per your needs */
    }
}

.message[b-1lwibtb1pn] {
    word-wrap: break-word;
    overflow-x: auto; /* horizontal scrolling */
    overflow-y: auto; /* vertical scrolling */
    max-height: 150px; /* or whatever height you desire */

    white-space: pre-line;

    font-family: 'Courier New', Courier, monospace; /* Mono-spaced font makes reading logs/errors easier */
    font-size: 0.9em; /* Adjust as needed */
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}


/* _content/GatewayUpdaterApp/Shared/LoginDisplay.razor.rz.scp.css */
table[b-r43clh50k7] {
    margin-top: 10px; 
}
    table tr[b-r43clh50k7] {
        border: 1px solid white;
    }

        table tr:hover[b-r43clh50k7] {
            background-color: #E5B836;
        }
/* _content/GatewayUpdaterApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-ssg6knk8so] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ssg6knk8so] {
    flex: 1;
}

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

.top-row[b-ssg6knk8so] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

    .top-row[b-ssg6knk8so], article[b-ssg6knk8so] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/GatewayUpdaterApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mnlahe6duw] {
    background-color: #313030;
}

.top-row[b-mnlahe6duw] {
    height: 2rem;
    background-color: #313030;
}

.navbar-brand[b-mnlahe6duw] {
    font-size: 1.1rem;
    color: white;
}

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

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

.nav-item:first-of-type[b-mnlahe6duw] {
}

.nav-item:last-of-type[b-mnlahe6duw] {

}


.nav-item[b-mnlahe6duw]  a {
    color: white;
    display: flex;
}

    .nav-item[b-mnlahe6duw]  a.active {
        background-color: #E5B836;
        color: white;
    }

    .nav-item[b-mnlahe6duw]  a:hover {
        background-color: #E5B836;
        color: white;
    }

@media (min-width: 641px) {
    .navbar-toggler[b-mnlahe6duw] {
        display: none;
    }

    .collapse[b-mnlahe6duw] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

.align-right[b-mnlahe6duw] {
    display: flex;
    justify-content: flex-end;
}

