html, body {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-size: 14px;
}

main {
    height: calc(100vh - 98px - 34px);
}
.content-grid {
    height: calc(100vh - 98px - 113px - 34px);
}

@media (max-width: 768px) {
    main {
        height: calc(100vh - 42px - 34px);
    }

    .content-grid {
        height: calc(100vh - 42px - 113px - 34px);
    }
}

@media (max-width: 576px) {
    main {
        height: calc(100vh - 42px - 82px);
    }

    .content-grid {
        height: calc(100vh - 42px - 113px - 82px);
    }
}

.excluded-point-row {
    opacity: 0.5;
}

.e-grid .report-row {
    background: #d1e7dd;
}

    .e-grid .report-row:has(.non-working-day) {
        background: #adb5bd;
    }

.activity-grid .e-grid .e-headercell, .activity-grid .e-grid .e-rowcell {
    border-bottom: 1px solid #6c757d;
    border-right: 1px solid #6c757d;
}

.activity-grid .e-grid .e-emptyrow td {
    border-bottom-width: 0;
    border-right: 1px solid #6c757d;
}

.activity-grid .e-grid {
    border: 1px solid #6c757d;
    border-right-width: 0;
}

    .activity-grid .e-grid .e-gridfooter .e-summaryrow .e-summarycell {
        border: 1px solid #6c757d;
        border-left-width: 0;
        padding: 10px 8px;
    }

    .validation-message {
        color: red;
        margin-top: 0.25rem;
    }

li.validation-message {
    list-style: none;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }