﻿
/* OVERWRITE MUDBLAZOR */
.mud-elevation-1, .mud-elevation-2 { /* Sets default as Outlined=true instead of Elevation=1 */
    box-shadow: none !important;
    border: 1px solid #0000001e;
}

.mud-button {
    box-shadow: none !important;
}

.mud-theme-dark .mud-input {
    background-color: #2A2833;
    color: lightgray;
}

.mud-theme-dark .CodeMirror {
    background-color: #2A2833;
    color: lightgray;
}

.link-account-panel .mud-expand-panel-header {
    padding: 16px 0 !important;
}

.link-account-panel .mud-expand-panel:first-child > .mud-expand-panel-header {
    padding-top: 0 !important;
}

/* CUSTOM CSS */

.mud-table-head > .mud-table-row > .mud-table-cell {
    font-weight: bold;
}

.mud-table-container > table > thead > tr > th {
    font-weight: bold;
}

.mud-table-container > .mud-table-root > .mud-table-body > .mud-table-row {
    height: 60px;
}

.mud-table-dense * .mud-table-row .mud-table-cell {
    height: 60px;
}

/* HORIZONTAL SCROLL */
.container-h-scroll {
    width: 100%;
}

.mud-input.mud-input-outlined.mud-input-adorned-end {
    width: 300px;
    height: 40px;
}

.mud-input-wide .mud-input.mud-input-outlined.mud-input-adorned-end {
    width: 225px;
    height: 40px;
}

.mud-input-thin .mud-input.mud-input-outlined.mud-input-adorned-end {
    width: 175px;
    height: 40px;
}

.mud-picker-inline.mud-picker-input-button .mud-input, .mud-picker-inline.mud-picker-input-button .mud-input .mud-input-root {
    width: 225px;
}

.mud-selected .mud-input.mud-input-outlined.mud-input-adorned-end {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
}

.mud-selected .mud-input.mud-input-outlined.mud-input-adorned-start {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
}

.mud-selected-thin .mud-input.mud-input-outlined.mud-input-adorned-end {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
    width: 175px;
}

.mud-selected-thin .mud-input.mud-input-outlined.mud-input-adorned-start {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
    width: 175px;
}

.mud-selected-wide .mud-input.mud-input-outlined.mud-input-adorned-end {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
    width: 225px;
}

.mud-selected-wide .mud-input.mud-input-outlined.mud-input-adorned-start {
    border: solid;
    border-color: darkorange;
    border-radius: 10px;
    width: 225px;
}

.mud-input-control > .mud-input-control-input-container > .mud-input-label-outlined.mud-input-label-inputcontrol {
    line-height: 16px;
}

.mud-tab {
    overflow: visible;
    margin-right: 60px;
}

.h-scroll {
    overflow-x: hidden;
}

    .h-scroll:hover {
        overflow-x: auto;
    }

    .h-scroll > .mud-chipset {
        display: inline-flex;
    }

/*Checking for cursor accuracy to know when on touch screen or using mouse.*/
@media (pointer: coarse) {
    .h-scroll::-webkit-scrollbar {
        display: none;
    }

    .h-scroll {
        overflow-x: auto;
    }
}

.mud-nav-link {
    padding: 4px 16px 1px 25px;
}

.large .mud-input.mud-input-outlined.mud-input-adorned-start {
    width: initial;
    height: 40px;
}

/* REACT MARKDOWN*/
.reactMarkdown {
    padding: 0em;
    font-family: 'proxima-nova', sans-serif;
    line-height: 1.3rem;
}

    .reactMarkdown p,
    .reactMarkdown h3 {
        margin-bottom: 1rem;
    }

    .reactMarkdown a {
        color: darkcyan;
    }

    .reactMarkdown pre {
        display: none;
    }

    .reactMarkdown ul {
    list-style: disc !important;
    padding: 0;
    margin: 0;
}
