﻿html, body {
    background-color: #eaeaea;
    margin: 0;
}

/* AvenirNextLTPro font faces */
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-It.otf') format('opentype'); font-weight: 400; font-style: italic; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-UltLt.otf') format('opentype'); font-weight: 200; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-UltLtIt.otf') format('opentype'); font-weight: 200; font-style: italic; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-MediumIt.otf') format('opentype'); font-weight: 500; font-style: italic; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-Demi.otf') format('opentype'); font-weight: 600; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-DemiIt.otf') format('opentype'); font-weight: 600; font-style: italic; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-BoldIt.otf') format('opentype'); font-weight: 700; font-style: italic; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-Heavy.otf') format('opentype'); font-weight: 800; font-style: normal; ascent-override: 90%; descent-override: 20%; }
@font-face { font-family: 'AvenirNextLTPro'; src: url('../Avenir_Next_Pro/AvenirNextLTPro-HeavyIt.otf') format('opentype'); font-weight: 800; font-style: italic; ascent-override: 90%; descent-override: 20%; }

.fixed-height-container {
    height: 200px;
}

.fixed-height-container > .content {
    overflow: auto;
}

.mud-nav-group .mud-nav-link-expand-icon {
    margin-top: 4px !important;
    font-size: 1rem !important;
}

/* MudBlazor only bolds nav-group titles (.mud-nav-group>.mud-nav-link>.mud-nav-link-text);
   top-level MudNavLink items (not inside a MudNavGroup) render as .mud-nav-item>.mud-nav-link
   and fall back to the browser default weight, looking lighter than sibling groups in the
   same menu. Match the group-title weight here. */
.mud-navmenu > .mud-nav-item > .mud-nav-link > .mud-nav-link-text {
    font-weight: 500;
}

.mud-step:hover {
    /*dont change backbround color*/
    background-color: transparent !important;
}

.mud-step:hover p {
    color: var(--mud-palette-primary) !important;
}

.mud-paper {
    overflow: clip;
}



.mud-autocomplete-after-items {
    padding: 0px !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mud-popover.mud-popover-open {
    border-radius: 10px !important;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.transparent-menu{
    background-color: transparent !important;
    box-shadow: none !important;
}



.appbar-attached {
    background-color: transparent !important;
    transition: all 0.2s ease-in-out;
}

.appbar-detached {
    background-color: white !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 10px;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.appbar-detached::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #e85c22, #7a2fa0);
    border-radius: 0 0 12px 12px;
}

.appbar-detached-dark {
    background-color: rgba(39, 39, 47, 1) !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    margin: 10px;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.appbar-detached-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #e85c22, #7a2fa0);
    border-radius: 0 0 12px 12px;
}


.mud-list {
    padding: 0px !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.scrollable {
    overflow: auto; /* Hide scrollbar initially */
    transition: overflow 0.3s ease-in-out; /* Smooth transition */
}

.no-right-border-radius fieldset {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.no-left-border-radius fieldset {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}


/*.scrollable:hover,
.scrollable:active,
.scrollable:focus {
    overflow: auto;
    scrollbar-track-color: transparent;
}*/


.align-text-right input {
    text-align: right;
}

.selected-row td{
    color: var(--mud-palette-primary) !important;
    background-color: var(--mud-palette-primary-hover);
}


.disabled-row td{
    color: var(--mud-palette-text-disabled) !important;
}

.text-end input { text-align: end !important; }

.mud-table-cell {
    display: table-cell;
    padding: 16px;
    font-size: .8125rem;
    text-align: start;
    font-weight: 400;
    line-height: 1.43;
    border-bottom: 1px solid var(--mud-palette-table-lines);
    letter-spacing: .01071em;
    vertical-align: inherit;
}

.mud-layout {
    min-height: 100vh;
}

.mud-nav-link.active:not(.mud-nav-link-disabled) {
    border-inline-end: none !important;
    border-right: none !important;
    background-image: linear-gradient(to bottom, #e85c22, #7a2fa0) !important;
    background-size: 3px 100% !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
}

.mud-main-content {
    min-height: calc(100vh - var(--mud-appbar-height));
    background-color: var(--mud-palette-background);
}



