body {
    font-family: Verdana, sans-serif;
    padding-left: 10%;
    padding-right: 5%;
    width: 60%;

    font-size: 16px;
}


#insertBox {
    margin-top: 50px;
    margin-bottom: 40px;

}

#insertForm {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#newTask{
    width: 60%;
    border:none;
}

#newEmployee{
    padding-right: 10px;
    border:none;
    border-left: none;
}

#newTaskInput {
    border: none;
    border-bottom: solid 1px;
    padding-bottom: 5px;
    height: 30px;
    width: 80%;
    font-size: 16px;
    background-color: lightblue;
}

#newEmployeeInput {
    border: none;
    border-bottom: solid 1px;
    padding-bottom: 5px;
    height: 30px;
    background: none;
    font-size: 16px;
    background-color: lightblue;
}

.button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;

    }



.button:hover {
    cursor: grab;
}

.copy-past {
    width: 40px;
    height: 40px;
    align-self: center;
    background-color: lightgrey;
    border-radius: 10px;
    margin-left: 10px;
}

.trash {
    width: 25px;
    height: 25px;
    align-self: center;
}

.copy-past:hover {
    filter: drop-shadow(0 0 0.75rem lightgreen);
    background-color: lightgreen;
    opacity: 0.5;
    cursor: grab;
}

.trash:hover {
    filter: drop-shadow(0 0 0.75rem red);
    cursor: grab;
}

.clicked {
    opacity: 0.5;
    background-color: lightgreen;
}

.employeeTaskList {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    margin-bottom: 20px;
}

.employeeBoxHeader {
    display: flex;
    flex-direction: row;
}

.taskElement {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
}