/* Examples will be given with the information so no need for both boxes.
Make the left box fill the width */
.box-left {
    width: 100%;
}

/* Code indentation style: level 1, set left margin of code to 30px */
.ind1 {
    margin-left: 30px;
}
/* Code indentation style: level 2, set left margin of code to 60px */
.ind2 {
    margin-left: 60px;
}
/* Code indentation style: level 3, set left margin of code to 90px */
.ind3 {
    margin-left: 90px;
}

/* Align all elements used to show a presentation to the center (e.g., text, buttons,
text fields, etc) Add a 10px margin below each one */
.demo-elements {
    text-align: center;
}
.demo-elements input {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Style the demo buttons to have a blue background, rounded corners and white,
larger, text */
.demo-button {
    color: #FFFFFF;
    background-color: #2196F3;
    border: none;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    font-size: 13pt;
}

/* Used to align the focus demo to the center of the page */
#_demo_focus {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
/* Used to hide the result of the focus demo on first load (default) */
#_demo_onfocus {
    display: none;
}
