.chore_list_label {
    display: block;
}

.chore_list_label:hover, .chore_list_label:active {
    background: deepskyblue;
}

#chore_list {
    display: none;
}

div#chore_links {
    position: fixed;
    right: 2%;
    top: 1%;
    background: white;
    border-radius: 7px;
    border: black solid 2px;
}

.chore_link {
    display: block;
    text-align: center;
}

.chore_link:visited {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

.chore_master {
    background: navy;
    color: white;
    margin: 0;
    padding: 0;
}

.chore_list_label {
    margin: 0;
    padding: 0;
}

.even_chore {
    background: lightblue;
}


@media only screen and (max-width: 1000px) {
    .chore_list_label {
        font-size: 80px;
        text-align: center;
    }

    .chore_master {
        font-size: 84px;
        text-align: center;
    }

    .chore_master:first-of-type {
        padding-top: 35px;
    }

    #chore_completed_modal {
        font-size: 60px;
    }

    div#chore_links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 35px;
        display: flex;
        border: none;
        border-radius: unset;
    }

    .chore_link {
        height: 35px;
        display: inline-block;
        flex: 1;
    }

}

/* Turn off existing buttons */
#group_chores .custom-control-input ~ .custom-control-label::before {
    content: none;
}

#group_chores .custom-radio .custom-control-input ~ .custom-control-label::after {
    content: none;
}

/* restyle radio items */
#group_chores .custom-control {
    padding-left: 0;
}

#group_chores .btn-group > .custom-control:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#group_chores .btn-group > .custom-control:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}

label.custom-control-label.btn.btn-secondary {
    border-radius: 0;
    margin-bottom: 5px;
}