﻿.WorkhoursLegend {
    display: flex;
}

.WorkhoursLegend-row {
    padding: 5px;
}

.WorkhoursLegend-description {
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

.WorkhoursLegend-gridCell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    height: 30px;
    min-width: 30px;
    font-size: 13px;
}

.WorkhoursLegend-gridCell.is-selected {
    border: 2px solid var(--primary);
    box-shadow: 0 0 6px var(--primary);
    font-weight: var(--font-weight-bold);
}

.WorkhoursLegend-gridCell.is-self {
    background-color: #fde899;
}

.WorkhoursLegend-gridCell.is-ancestor {
    background: linear-gradient(360deg, var(--surface-default) 3.51%, #fde899 97.37%);
}

.WorkhoursLegend-gridCell.is-disabled {
    background-color: #f2f2f2;
    color: rgb(0 0 0 / 50%);
}

.WorkhoursLegend-gridCell.is-past {
    position: relative;
    overflow: hidden;
}

/* This renders the strikethrough for days in the past */
.WorkhoursLegend-gridCell.is-past::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 1px;
    width: 150%;
    background-color: #ccc;
    transform-origin: bottom left;
    transform: rotate(-45deg);
}

.WorkhoursLegend-gridCell.is-today {
    background-color: var(--primary);
    color: var(--text-inverse);
}
