.my_schedule_backer {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 40px);
    display: none;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    overflow-y: auto;
}

.my_schedule_calendar_backer {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: block;
    align-items: center;
    justify-content: center;
}

.my_caneldar_main_frame {
    background-color: transparent;
    width: 100%;
    height: 95%;
    margin: 0 20px;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.my_caneldar_main_frame_weekdays_backer {
    background-color: transparent;
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    gap: 1px;
}

.my_caneldar_main_frame_weekdays {
    background-color: #434d70;
    width: calc(100% / 7 - 1px);
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EDEFFC;
}

.my_calendar_shifts_aligner {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1px;
}

.shift_frame {
    background-color: #434d70;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.shift_frame_off {
    background-color: #862d2d;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.shift_frame_off .my_shift_role {
    display: none;
}

.shift_frame_fake {
    background-color: #8d8d8d;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.shift_frame_natali {
    background-color: #c55e70;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.shift_frame_off_natali {
    background-color: #f1f126;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.shift_frame_off_natali .my_shift_date {
    color: #303853;
}

.my_shift_date_natali {
    background-color: transparent;
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303853;
    margin-top: 5px;
}

.shift_frame_fake_natali {
    background-color: #8d8d8d;
    background-image: url(../icons/forNat1.jpg);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    width: calc(100% / 7 - 1px);
    height: calc(100% / 6 - 1px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.my_shift_date {
    background-color: transparent;
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EDEFFC;
    margin-top: 5px;
}

.my_shift_role {
    background-color: transparent;
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EDEFFC;
}

.my_shift_type {
    background-color: #DFFFD6;
    width: 80%;
    height: 30%;
    border-radius: 5px;
    font-size: 14px;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.my_schedule_listing_body {
    background-color: #303853;
    width: 80%;
    height: calc(100% - 70px);
    padding: 0 10px;
    border-radius: 10px 10px 0 0;
    display: none;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    overflow-y: auto;
    color: #EDEFFC;
}

.my_schedule_header {
    background-color: transparent;
    width: 80%;
    height: 50px;
    margin-top: 20px;
    display: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.my_schedule_frame_to_view {
    background-color: #212542;
    width: 90%;
    min-height: 50px;
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    color: #EDEFFC;
    font-size: large;
    font-weight: 700;
    user-select: none;
    cursor: pointer;
}

.my_schedule_frame_to_view:hover {
    background-color: #434d70;
}