﻿.fsh-center-text {
    text-align: center !important;
}

.mud-button-filled {
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 30%), 0 2px 2px 0 rgb(0 0 0 / 0), 0 1px 5px 0 rgb(0 0 0 / 10%) !important;
}

.mud-dialog {
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 0), 0 10px 10px 0 rgb(0 0 0 / 5%) !important;
}

.mud-toolbar.mud-toolbar-gutters.mud-table-toolbar
{
    padding-left: 0px;
}

.mud-nav-link {
    white-space: normal !important;
    padding: 12px 16px 12px 38px;
}

    .mud-nav-link.active:not(.mud-nav-link-disabled) {
        border-right: 3px solid var(--mud-palette-primary);
        background-color: rgba(var(--mud-palette-primary-rgb), 0.1);
    }

.mud-table {
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.mud-list-item.mud-list-item-disabled {
    cursor: not-allowed !important;
    pointer-events: all !important;
}

.mud-button-root:disabled {
    cursor: not-allowed !important;
    pointer-events: all !important;
}

.mud-card {
    margin-bottom: 20px !important;
}

#blazor-error-ui {
    color: var(--mud-palette-drawer-text);
    background: var(--mud-palette-drawer-background);
}

.mud-overlay-dark {
    backdrop-filter: blur(2px);
}

.mud-card-header .mud-card-header-avatar {
    margin-inline-end: 10px !important;
}

.mud-nav-link {
    padding: 12px 16px 12px 15px !important;
}

.mud-table-toolbar {
    flex-wrap: wrap;
    margin-bottom: 20px !important;
}

::-webkit-scrollbar {
    width: 2px !important;
    height: 6px !important;
}

.fsh-nav-child {
    padding-left: 10px !important;
}

.bottom-sticky {
    position: sticky;
    bottom: 0px;
}

.bottom-cardactions {
    position: sticky;
    bottom: 10px;
    z-index: 20;
    height: auto;
}


.bottom-cardactions-puffer {
    height: 20px;
}

.teco {
    font-family: Barlow;
    font-size: 100px;
    font-weight: 600;
    white-space: nowrap;
}

.tecounderline {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 10px;
}

.table-card-grid {
    display: flex !important;
}

.table-card {
    width: 100% !important;
    height: 100% !important;
}

.table-card-value {
    color: var(--mud-palette-primary);
}

.table-card-key {
    
}

.clickable-hover :hover{
    filter: brightness(80%);
}

.material-icons:after {
    content: var(--icon);
}

.timesheet-running {
    height: 85%;
    background-color: #9ce39c;
    width: 80%;
    max-width: 1000px;
    border-width: 4px;
    border-style: solid;
    border-color: var(--mud-palette-success);
    border-radius: 0;
    padding-left: 4px;
}

.timesheet-stopped {
    height: 85%;
    background-color: #fdb4b4;
    width: 80%;
    max-width: 1000px;
    border-width: 4px;
    border-style: solid;
    border-color: var(--mud-palette-error);
    border-radius: 0;
    padding-left: 4px;
}

@media only screen and (max-width: 4500px) {
    .teco {
        font-size: 80px;
    }

    .tecounderline {
        text-decoration-thickness: 8px;
    }

    html {
        font-size: 100%;
    }
}

@media only screen and (max-width: 1700px) {
    .teco {
        font-size: 80px;
    }

    .tecounderline {
        text-decoration-thickness: 8px;
    }

    html {
        font-size: 80%;
    }
}

@media only screen and (max-width: 1500px) {
    .teco {
        font-size: 80px;
    }

    .tecounderline {
        text-decoration-thickness: 8px;
    }

    html {
        font-size: 80%;
    }
}

@media only screen and (max-width: 1000px) {
    .teco {
        font-size: 80px;
    }

    .tecounderline {
        text-decoration-thickness: 8px;
    }

    html {
        font-size: 80%;
    }
}


@media only screen and (max-width: 750px) {
    .teco {
        font-size: 80px;
    }

    .tecounderline {
        text-decoration-thickness: 8px;
    }

    html {
        font-size: 80%;
    }
}

@media only screen and (max-width: 500px) {
    .teco {
        font-size: 50px;
    }

    .tecounderline {
        text-decoration-thickness: 5px;
    }

    html {
        font-size: 80%;
    }
}

@media only screen and (max-width: 320px) {
    .teco {
        font-size: 40px;
    }

    .tecounderline {
        text-decoration-thickness: 4px;
    }

    html {
        font-size: 80%;
    }
}

.mud-calendar-td{
    
}

.mud-calendar-cell {
    display: grid;
    max-width: 100%;
}

.large-screen-only {
    display: none;
}

@media (min-width: 768px) {
    .large-screen-only {
        display: block;
    }
}

.css-current-storage {
    animation-name: color;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease;
}


@keyframes color {
    from {
        background-color: var(--mud-palette-success);
    }

    to {
        background-color: var(--mud-palette-info);
    }
}

