.task-section {
    padding: 33px;
    width: 95%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 5px #C6D3DEDB;
}

.section-title {
    font-weight: bolder;
    font-size: 18px;
    margin-bottom: 22px;
}

#filterForm{
    gap: 10px;
    margin-bottom: 25px;
}

.flatpickr-input{
    width: 55px;
    background-color: none;
    cursor: pointer;
}

.status-filter{
    border: none;
    background: none;
    cursor: pointer;
}

.btn-tarefas {
    width: 193px;
    height: 63px;
    background: #F0A321 0% 0% no-repeat padding-box;
    border: 2px solid #F0A321;
    border-radius: 7px;
    letter-spacing: 0px;
    display: flex;
    align-content: space-between;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: bolder;
    cursor: pointer;
}

.task-list {
    max-height: 300px;
    overflow-y: auto;
}

#lista-tarefas {
    max-height: 300px; 
    overflow-y: auto; 
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

.task-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    height: 58px;
    background: #EAEFFB 0% 0% no-repeat padding-box;
    border-radius: 9px;
    padding: 16px;
}

.task-container:hover {
    background: #d5ebfd 0% 0% no-repeat padding-box;
}

.task-checkbox {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    background: #FFFFFF;
    border: none;
    outline: none;
    cursor: pointer;
}

.task-label {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    color: #39394E;
}

.date-icons {
    gap: 15px;
}

.task-date {
    color: #39394E;
    cursor: context-menu;
}

.edit-icon,
.delete-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.edit-icon svg,
.delete-icon svg {
    fill: #c6cfe6;
}

.edit-icon:hover svg,
.delete-icon:hover svg {
    fill: #FFFFFF;
}

.edit-icon svg {
    transform: translate(-3px, 0);
}

.edit-icon:hover svg path {
    fill: #F0A321;
    opacity: 0.6;
}

.delete-icon:hover svg path{
    fill: #F62727;
    opacity: 0.6;
}

.btn-visita--visualizacao{
    margin-left: 13px;
}