*{
    margin: 0;
    padding: 0;
}
table#unemp{
    text-align: center;
}
table#unemp td{
    padding: 5px;
    font-size: 14px;
}
table#unemp tr:nth-child(n+3) td:nth-child(1), table#unemp tr:nth-child(2) td{
    background: #a0ce82;
    position: relative;
    cursor: pointer;
}
table#unemp .before, table#unemp .aftore{
    position: relative;
}
table#unemp .before:after, table#unemp .aftore:after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #a0ce82;
}
table#unemp .before:after{
    background-color: red;
    top: 0;
    bottom: 0;
    right: -10px;
    margin: auto 0;
}
table#unemp .aftore:after{
    background-color: red;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
}
table#unemp h4{
    font-size: 18px;
}
table#unemp h5{
    font-size: 16px;
}

select:hover {
    cursor: pointer;
}