:root {
    --ATGreen: #008000;
    --ATRed: #e50000;
    --ATOrange: #e67e30;
    --ATBlue: #0f62a3;
    --ATGrey: #7d8da1;
}

.calendar-mois{
    height: 100vh;
    width: 90%;
    font-size: 14px;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* Modal */

#calendar {
    font-size: 14px;
    height: 100vh;
    margin-bottom: 20px;
    margin-top:20px;
    width: 100%
}

.ATmodal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: width 2s;
    backdrop-filter: blur(1px);
    
}

.modal--show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__calendar_task {
    /* background-color: #ffffff; */
    /* max-width: 90%; */
    /* max-height: 70%; */
    padding: 16px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    background-color:#EFF0F5;
    /* color: #ffffff; */
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow-y: initial !important;
    /* width: 50vw; */
    /* width: 30%; */
    /* height: 60%; */
}

.modal__schedule_task {
    padding: 16px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    background-color:#EFF0F5;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow-y: initial !important;
}

.modal-content{
    background-color:#EFF0F5;
    padding: 16px;
}


.modal__addtask_body{
    height: 75vh;
    overflow-y: auto;
}

/* .modal__edittask_body{
    height: 70vh;
    overflow-y: auto;
} */

.modal__viewtask_body{
    height: 71vh;
    overflow-y: auto;
}


@media (min-width: 700px){
    .modal__calendar_task {
        width: 50vw;
        /* height: 90%; */
    }
}


.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.modal__btn_close{
    color: black;
    /* font-size: 25px; */
}

.modal__addtask_header{
    display: flex;
    justify-content: space-between;
}

.modal__btn_add{
    width: 100%;
    /* margin-bottom: 10px; */
}

.modal__btn_delete{
    /* width: 100%; */
    background-color: red;
    color: white;
}

#calendar-week {
    font-size: 14px;
    height: 75vh;
    margin-bottom: 30px;
    margin-top: 30px;
}

a i {
    transition: all 0.3s linear;
}

.month_view_task_nf{
    background-color: var(--ATBlue) !important;
    border-color: var(--ATBlue) !important;
}

.month_view_task_ft{
    background-color: var(--ATGreen) !important;
    border-color: var(--ATGreen) !important;
}

.month_view_task_rp{
    background-color: var(--ATGreen) !important;
    border-color: var(--ATGreen) !important;
}

.month_view_task_exp{
    background-color: var(--ATRed) !important;
    border-color: var(--ATRed) !important;
}

.month_view_task_ea{
    background-color: var(--ATOrange) !important;
    border-color: var(--ATOrange) !important;
}

.fc-daygrid-dot-event {
    display: block !important;
    align-items: center !important;
    padding: 0 !important;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 1rem;
    margin-right: 5px;
    margin-left: 5px;
}

.fc .fc-toolbar.fc-footer-toolbar {
    margin-top: 1.5em;
    margin-left: 5px;
    margin-right: 5px;
}

.fc-event-title{
    font-size: 10px;
    color: white;
}

.file-block {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 10px;
}

.file-block2 {
    display: grid;
    grid-template-columns: repeat(4, 80px);
    gap: 10px;
}

.task-image, .pdf-file-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid #b8b7b7;
    padding: 1px;
    overflow: hidden;
    position: relative;
    object-fit: cover !important;
}

.task-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pdf-file-link:before {
    content: "\f1c1"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-bottom: 5px;
}

.pdf-file-link {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    text-align: center;
    text-overflow: ellipsis;
    line-height: 14px;
    overflow: hidden;
}

.delete-label{
    font-size: 12px;
}