
.item-hover:hover {
    background-color: #DCDCDC;
}

.editable-field {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
}
.editable-field:after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: normal;
    /*content: "\00a0 \00a0 edit";*/
    content: "\f044";
    font-weight: 900;
}
.editable-field:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.editable-delete-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #dc3545;
    font-size: 1.5rem;
    cursor: pointer;
}
.editable-delete-icon:hover {
    color: #AA0000;
    transform: scale(1.1);
    text-shadow: 0 0 2px #000000;
}

.option-more-link {
    color: rgb(31, 81, 176);
    cursor: pointer;
}
.option-more-link:hover {
    color: rgb(31, 81, 176);
    text-decoration: underline;
}

.vote-option-container {
    display: flex;
}
.vote-option-checkbox-container{
    display: inline-block;
    width: 75px;
}
.vote-option-description-container{
    display: inline-block;
    width: 100%;
}

/* Default browser checkboxes cannot be resized so we hide them and style the attached label instead */
input[type="checkbox"].election-vote-checkbox {
    display:none;
}
.election-vote-label {
    font-size: 50px;
    font-family: "Times New Roman", Times, serif;
    cursor: pointer;
}
.election-vote-label:before {
    content:"☐";
}
.election-vote-label.ticked:before {
    content:"☑";
}
.election-vote-label {
    color: #000000;
 }
.election-vote-label:hover {
    color: #007F00;
}
.election-vote-label.ticked {
    color: #007F00;
}
.election-vote-label.unselectable {
    color: #AAAAAA;
}
