* {
    box-sizing: border-box;
}

body {
    font-family: 'Coda', cursive;
    font-size: 12px;
    color: #404040;
}

#healthXML {
    position: relative;
    width: 170px;
    height: 100px;
    vertical-align: top;
    text-align: center;
    border: 1px solid #575757;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    padding: 5px;
    cursor: crosshair;
}

#bigPlus {
    position: absolute;
    bottom: 45px;
    left: 0px;
    right: 0px;
    height: 30px;
    font-size: 64px;
    color: #bbbfbf;
}

h1,
h2 {
    color: grey;
}

#dataDisplay {
    vertical-align: top;
    border: 0px solid black;
    position: absolute;
    top: 170px;
    left: 10px;
    right: 0px;
    bottom: 0px;
}

#healthTypeTitle {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 170px;
    text-align: center;
    display: none;
    font-weight: bold;
    font-size: 10px;
}

#healthTypes {
    position: absolute;
    top: 15px;
    left: 0px;
    width: 170px;
    border: 0px solid #ebebeb;
    text-align: center;
    bottom: 10px;
    overflow: auto;
    display: none;
}

.healthType {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    height: 20px;
    width: 130px;
    line-height: 20px;
    font-size: 10px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #dcf5dd;
    border: 1px solid #d6d6bd;
    margin-bottom: 5px;
    text-overflow: ellipsis;
    padding-left: 3px;
    padding-right: 3px;
}

.healthType:hover {
    background-color: #9af89e;
}

.healthType-none {
    background-color: #ff9278;
    cursor: not-allowed;
}

.healthType-none:hover {
    background-color: #ff9278;
}

#visualize {
    border: 0px solid black;
    position: absolute;
    left: 190px;
    top: 60px;
    bottom: 10px;
    right: 10px;
    overflow: auto;
}

.chartDiv {
    position: relative;
    width: 95%;
    height: 300px;
}

.avgHeart {
    font-size: 14px;
    font-weight: bold;
}