/*
	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.
*/

.full-size {
    width: 100%;
    height: 100%;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.widget-container {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px;
}

.border-radius {
    border-radius: 8px;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-space {
    display: flex;
    justify-content: space-between;
}

.align-center {
    display: flex;
    align-items: center;
}

.border-surface {
    border: solid 1px var(--surface-color);
    border-radius: 8px;
}

.border-drawer {
    border: solid 1px var(--drawer-icon-color);
    border-radius: 8px;
}

.border-grey-default {
    border: solid 1px var(--gray-default-color);
    border-radius: 8px;
}

.background-white {
    background-color: var(--white-color);
}

.background-surface {
    background-color: var(--surface-color);
}

.background-gray-dark {
    background-color: var(--gray-dark-color);
}

.background-gray-light {
    background-color: var(--gray-light-color);
}

.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;
}

::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
    z-index: 1000 !important;
    border-radius: 10px !important;
}

::-webkit-scrollbar-button {
    display: none !important;
}

::-webkit-scrollbar-track {
    background: transparent !important;
    border: solid 1px #E4E8E9;
    border-radius:10px;
}

::-webkit-scrollbar-thumb {
    height: 10px ;
    background: #3D4F67 !important;
    border-radius: 10px !important;
    cursor: pointer;
    width: 4px !important;
}

::-webkit-scrollbar-track:horizontal {
    background: #E4E8E9 !important;
    border: none;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:horizontal {
    background: #3D4F67 !important;
    border-radius: 10px !important;
    cursor: pointer;
    width: 4px !important;
}

/* ::-webkit-scrollbar-track:hover:horizontal {
    border: solid 1px #E4E8E9;
} */

/* ::-webkit-scrollbar-thumb:hover:horizontal {
    background: #3D4F67 !important;
} */