.weekNo
{
    width: 0 !important;
    height: 0 !important;
    flex: none!important;
    background-color: lightgray !important;
    padding-left: 0.0em !important;
    padding-right: 0.0em !important;
    text-align: center !important;
    font-size: smaller !important;
    position: relative !important;
    border-style: none !important;
}

.weekNo div
{
    padding-top: 0.3em;
    position: absolute;
    left: -1.5em;
    text-align: center;
    width: 1.5em;
}

.monthSwitcher
{
    height: 100%;
    width: 100%;
    min-width: 800px;
}

.calendar
{
    height: 100%;
    margin-left: 1.5em;
    font-size: small;
    width: calc(100% - 1.5em);
    min-width: 800px;
}

.calendar > .row
{
    /*height: calc(16.7% - 2em / 6);*
    /*width: 100%;*/
    border-right-width: 1.5em;
    border-right-color: lightgrey;
    border-right-style: solid;
    border-left-width: 1.5em;
    border-left-color: lightgrey;
    border-left-style: solid;
}

.calendar > .row.row-5
{
    height: calc(100% / 5 - 2em / 5);
}

.calendar > .row.row-6
{
    height: calc(100% / 6 - 2em / 6);
}

.calendar > .row > .col
{
    border-width: 1px;
    border-style: solid;
    border-color: lightgray;
    text-align: center;
    padding:0;
    max-width: calc(100% / 7);
}

.calendar > .row:first-child
{
    border-top-right-radius: 1em;
    border-top-left-radius: 1em;
}

.calendar > .row:last-child
{
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
}

.calendar > .weekdays
{
    height: 2em;
}

.today
{
    border-color: blue !important;
}

.today > div:first-child > span
{
    border-radius: 0.4em;
    color: white;
    font-weight: bold;
    background-color: blue;
    padding: 0.08em 0.4em 0.1em 0.4em;
}

.monthSwitcher .carousel-control-prev,
.monthSwitcher .carousel-control-next
{
    position: relative;
    display: inline;
    width: auto;
}

.monthSwitcher .carousel-control-prev-icon,
.monthSwitcher .carousel-control-next-icon
{
    height: 1.5em;
}

.monthSwitcher .carousel-dark .month
{
    font-size: larger;
    position: relative;
    top: -0.25em;
    display: inline-block;
    width: 10em;
    white-space: nowrap;
    text-align: center;
}

.monthSwitcher .carousel-dark
{
    display: inline-block;
    position: absolute;
    top: 1em;
    right: 1em;
}


.non-workday
{
    background-color: #F0F0F0;
    opacity: 0.7;
}

.holiday
{
    background-color: lightseagreen;
}

.company-holiday
{
  background: repeating-linear-gradient(
  45deg,
  lightseagreen,
  lightseagreen 10px,
  white 10px,
  white 20px)
}

.overtime-day
{
    background-color: lightsalmon;
}

.sickday
{
    background-color: lightgreen;
}

.vacation-day
{
    background-color: lightcoral;
}


.workday:hover,
.non-workday:hover,
.holiday:hover,
.company-holiday:hover,
.overtime-day:hover,
.sickday:hover,
.vacation-day:hover
{
    border-color: black!important;
    cursor: pointer;
    opacity: 1;
}

.workday:hover > div:first-child > span,
.non-workday:hover > div:first-child > span,
.holiday:hover > div:first-child > span,
.company-holiday:hover > div:first-child > span,
.overtime-day:hover > div:first-child > span,
.sickday:hover > div:first-child > span,
.vacation-day:hover > div:first-child > span
{
    border-radius: 0.4em;
    color: white;
    font-weight: bold;
    background-color: black;
    padding: 0.08em 0.4em 0.1em 0.4em;
}


.edit-button
{
    height: 1.6em;
    width: 1.6em;
    padding: 0 !important;
    font-size: smaller !important;
    color: var(--bs-gray-dark) !important;
}

.worktime-editor .row
{
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

.suggestion
{
    opacity: 0.6
}