﻿.calendarWeek {
    display: flex;
    flex-direction: row;
    row-gap: 2px;
    overflow: hidden !important;
    cursor: pointer;
    border-radius: 6px !important;
}

    .calendarWeek:hover * {
        background-color: #00A157 !important;
        color: white !important;
    }

.calendarWeekSelected * {
    background-color: #00A157 !important;
    color: white !important;
}

.calendarDayOff {
    color: red;
}

.calendarView {
    width: 100%;
    height: auto;
}

.calendarDay {
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
    align-self: center;
    justify-content: center;
    max-width: 50px;
    overflow: hidden !important;
    overflow-wrap: anywhere;
    width: 50px;
    height: 50px;
}

.calendarBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendarHeader {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    flex-direction: row !important;
    column-gap: 5px !important;
    color: #00A157 !important;
    font-size: 18px !important;
}

    .calendarHeader *:last-child {
        margin-left: auto !important;
    }

.calendarDaysHeader {
    display: flex !important;
    flex-direction: row !important;
    row-gap: 2px !important;
    width: 100% !important;
    padding: 0 5px 0 0 !important;
    border-bottom: 1px solid #999999 !important;
}

    .calendarDaysHeader .calendarDay {
        font-weight: bold !important;
        color: #999999 !important;
    }



.calendarWeekNumber {
    font-weight: bold !important;
}



/*    .week:hover * {
        background-color: #00A157 !important;
        color: white !important;
    }
*/

