/*
	This CSS file matches the color scheme from MudBlazor to Bootstrap when utilized for authentication.
	The file remains available at all times for demonstration purposes,
	but it is exclusively employed in the 'App.razor' component when authentication is enabled.
*/

.btn-primary {
    text-transform: uppercase;
    --bs-btn-bg: var(--mud-palette-primary) !important;
    --bs-btn-hover-bg: var(--mud-palette-primary-darken) !important;
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--mud-palette-primary) !important;
}

.nav {
    --bs-nav-link-color: var(--mud-palette-primary) !important;
    --bs-nav-link-hover-color: var(--mud-palette-primary-darken) !important;
}


.agenda-tr {
    border-left-width: 2px !important;
    border-left-color: var(--mud-palette-primary) !important;
}

.agenda-tr .agenda-td {
    border-bottom-width: 0px;
}

.a-fill-td {
    display: table;
    width: 100%;
}

/* Hide scrollbar for WebKit browsers */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE and Edge */
.hide-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.tab-not-selected {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 16px;
    padding-top: 16px;
    font-size: var(--mud-typography-default-size) !important;
    margin-bottom:0px;
}

.tab-selected {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 16px;
    padding-top: 16px;
    border-bottom-width: 3px !important;
    border-bottom-color: var(--mud-palette-primary) !important;
    font-size: var(--mud-typography-default-size) !important;
    font-weight:700;
    margin-bottom: 0px;
}

.simple-table-no-row-lines td {
    border-bottom: none !important;
}

.mud-typo-body1 {
    font-family: var(--mud-typography-body1-family) !important;
    font-weight: var(--mud-typography-body1-weight) !important;
    font-size: var(--mud-typography-body1-size) !important;
}

.mud-typo-caption {
    font-family: var(--mud-typography-caption-family) !important;
    font-weight: var(--mud-typography-caption-weight) !important;
    font-size: var(--mud-typography-caption-size) !important;
}

.mud-color-action-default {
    color: var(--mud-palette-action-default) !important;
}

.mud-color-text-secondary {
    color: var(--mud-palette-text-secondary) !important;
}

.mud-color-text-disabled {
    color: var(--mud-palette-text-disabled) !important;
}


@media screen and (min-width: 641px) {
    .visible-sm-only {
        display: none !important;
        visibility: hidden !important;
    }
}

@media screen and (max-width: 641px) {
    .hidden-sm {
        display: none !important;
        visibility: hidden !important;
    }

    .autofit-sm {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0em !important;
        margin-bottom: 0em !important;
        padding-left: 0em !important;
        padding-right: 0.5em !important;
        padding-top: 0em !important;
        padding-bottom: 0em !important;
    }

    .card-autofit-sm {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0em !important;
        margin-bottom: 0em !important;
        padding-left: 0em !important;
        padding-right: 0.5em !important;
        padding-top: 0em !important;
        padding-bottom: 0em !important;
    }

    .simple-table-autofit-sm {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0em !important;
        margin-bottom: 0em !important;
        padding-left: 0em !important;
        padding-right: 0.5em !important;
        padding-top: 0em !important;
        padding-bottom: 0em !important;
    }

    .paper-autofit-sm {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0em !important;
        margin-bottom: 0em !important;
        padding-left: 1em !important;
        padding-right: 0.5em !important;
        padding-top: 1em !important;
        padding-bottom: 1em !important;
    }

    .separator-border-top-sm {
        border-top: solid .5em #ccc !important;
    }

    .lateral-padding-0-sm {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .lateral-margin-0-sm {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
}