/**
* Kalendář pro zobrazení akcí
* 
* GUI pro zobrazení akcí
* 
* @category   Komponenty
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.5, 2023-03-19
*
*/

.FAC_main_cont {
    background-color: #fff;
    border: solid 2px #000;
    border-radius: 4px;
}

.FAC_flex_column {
    display: flex;
    flex-direction: column;
}

.FAC_flex_row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.FAC_flex_filler {
    flex: 1 100%;
}

.FAC_move_button {
    background-color: #000;
    color: #fff;
    font-size: 11pt;
    font-weight: bold;
    padding: 0.6vh 0.2vw 0.3vh 0.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3vh;
    height: 3vh;
    flex: 0 0 3vh;
    cursor: pointer;
}

.FAC_move_button:hover {
    background-color: rgb(109, 109, 109);
}

.FAC_select {
    font-size: 10pt;

}


#FAC_cal_days_cont {
    justify-content: space-around;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    padding: 0.5vh 0.2vw;
}

.FAC_day_cont {
    color: #000;
    font-weight: bold;
    font-size: 10pt;
}

#FAC_cal_buttons_cont {
    padding: 0.5vh 0.2vw;
}

.FAC_cal_buttons_row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.FAC_sep_row {
    margin: 0 0 0.5vh 0;
}

.FAC_sep_button {
    margin: 0 0.5vh 0 0;
}

.FAC_cal_button, .FAC_cal_empty_button {
    background-color: #000;
    color: #fff;
    border: solid 1px #000;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10pt;
    padding: 0.3vh 0 0 0;
    width: 4vh;
    height: 4vh;
    flex: 0 0 4vh;
    user-select: none;
}

.FAC_cal_empty_button {
    background-color: unset;
    color: unset;
    border: unset;
    border-radius: unset;
    cursor: unset;
}

.FAC_sel_date {
    background-color: #fff;
    color: #000;
    font-weight: bold;
}

.FAC_cur_date {
    background-color: rgb(39, 0, 180);
}

.FAC_action_date {
    background-color: rgb(170, 126, 5);
    cursor: pointer;
}

.FAC_action_date:hover {
    color: #fff;
    background-color: rgb(94, 77, 30);
}

.FAC_action_date_done {
    background-color: rgb(0, 152, 28);
}

.FAC_action_date_done:hover {
    background-color: rgb(23, 80, 34);
}

.FAC_action_date_required {
    background-color: rgb(197, 30, 30);
}

.FAC_action_date_required:hover {
    background-color: rgb(97, 37, 37);
}

.FAC_action_date_blocked {
    background-color: rgb(126, 126, 126);
}

.FAC_action_date_blocked:hover {
    background-color: rgb(97, 97, 97);
}


.FAC_no_actions {
    font-style: italic;
    font-size: 11pt;
    color: #212121;
}

.FAC_action_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.3vh 0;
}

.FAC_action_title {
    font-size: 13pt;
    color: #212121;
}

.FAC_action_title:before {
	content: '•';
	margin: 0 0.4vw 0 0;
    padding: 0.3vh 0 0 0;
} 

.FAC_list_date {
    font-size: 11pt;
    color: #212121;
    text-decoration: underline;
    margin: 0 0 10px 0;
    text-align: center;
}