/*
inline-label that makes a div appear as an inline label
*/
.inline-label {
    display: inline-block;
    width: 100px;
    text-align: right;
    margin-right: 10px;
}

/*
Target buttonsPanel by ID.
It hovers above the main content at the bottom left corner.
It does not make the main content bigger. It just hovers above it.
*/
.buttonsPanel {
    position: absolute;
    bottom: 0;
    left: 0;
    
    

    /* Give it some style */
    background: #eee;
    border: 1px solid #ccc;
}