.main-card {
    padding: 24px;
    margin: 16px;
}

.erp-main-card {
    max-height: calc(100vh - (32px + var(--mud-appbar-height)));
}

.stepper-main-card {
    padding: 24px;
    margin: 16px;
    width: 60vw;
}

.erp-edit-table > .mud-table-container {
    max-height: calc(100vh - calc(32px + var(--mud-appbar-height) + 170px));
}

.erp-edit-table-button-column {
    width: 100px;
}

.expansion-panel-header.mud-expand-panel .mud-expand-panel-header {
    font-size: var(--mud-typography-h6-size);
}

.assembly-edit-carousel {
    width: 100%;
    height: 500px;
}

.assembly-edit-carousel-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.assembly-edit-order-image {
    margin: 5px;
    margin-right: 50px;
}

.assembly-edit-notes-button {
    transform: scale(1, -1) rotate(90deg);
}

.assembly-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.assembly-list-item {
    cursor: pointer;
}

.assembly-list-item:hover {
     background-color: var(--mud-palette-action-default-hover);
}

.min-width-250 {
    min-width: 250px;
}
.min-width-200 {
    min-width: 200px;
}
.min-width-150 {
    min-width: 150px;
}

.text-overflow-wrap {
    text-overflow:ellipsis;
}

.export-state-list-failure-item:hover {
    background-color: rgba(255, 0, 0, 0.25);
}

.export-state-list-succeeded-item:hover {
    background-color: rgba(0, 255, 0, 0.25);
}


#shift-plan-container .shift-plan-calendar-container {
    margin-bottom: 20px !important;
}

#shift-plan-container .shift-plan-shift-plan-cards {
    padding-top: 20px !important;
}

#shift-plan-container .shift-plan-model-edit-container {
    padding-top: 20px !important;
}

.select-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-item-badge {
    margin-right: 30px;
    float:right;
}

.fab-container {
    z-index: 20;
    --self-padding: 24px;
    display: flex;
    padding: var(--self-padding);
    position: fixed;
    top: calc(var(--mud-appbar-height) + var(--self-padding));
    right: var(--self-padding);
    gap: 8px;
}

    .fab-container > .fab-no-transparency:disabled {
        background-color: rgba(140, 140, 150, 1);
        color: rgba(255, 255, 255, 0.5) !important;
    }

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}