body { font-family: Roboto, sans-serif; }

.status.available { background-color: #9ed27c; }
.status.occupied { background-color: #5a7eb4; }
.status.charging { background-color: #4cc4ce; }
.status.faulted { background-color: #f68466; }
.status.offline { background-color: #707070; }

.charge-list {
	max-width: 600px;
    margin: auto;
}

.status {
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 7.5px 15px;
    float: right;
    font-weight: 400;
    color: #ffffff;
    margin-top: 5px;
    width: 120px;
    position: relative;
    top: 12px;
}

.charger-item {
    overflow: hidden;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}


.charger-position { 
    font-weight: 600;
	font-size: 1.25em;
}
.charger-desc {
	font-style: italic;
	color: #999;
}