body {
    background-color: yellow !important;
}
.fi-header-heading {
    color: black !important;
}
.w-100 {
    width: 100%;
}
code.data-dump {
    font-size: 0.9em;
    color: #00bb00;
}
.data-dump-wrapper {
    background: black;
    padding: 1em;
    border-radius: 0.5em;
}
.float-right {
    float: right;
}

.large-header header {
    height: 72px;
    line-height: 72px;
}

.large-header header svg {
    height: 42px;
    width: 42px;
}

.calculation-loader {
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    color: yellow;
}

.calculation-loader .center {
    position: relative;
    height: 100%;
    width: 100%;
}
.calculation-loader .center .loading {
    font-size: 32px;
    position: absolute;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.calculation-loader .center .loading svg {
    margin: 0 auto;
}

.no-results {
    border: 2px solid red;
    background-color: #fdecec;
    color: red;
    padding: 0.5em;
    text-align: center;
    border-radius: 10px;
}

.custom-button {
    display: inline-block;
    border-radius: 10px;
    background: yellow;
    cursor: pointer;
    padding: 10px 30px;
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.inline-block {
    display: inline-block;
}

/* Filament table pagination: move the middle (pagination) block to the right */
.fi-ta-pagination {
    grid-template-columns: 1fr auto !important; /* drop the 3rd column */
}

.fi-ta-pagination > .col-start-2 {
    grid-column: 2 !important;
    justify-self: end !important;
}
