/* General Styles */
body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Header */
h2 {
    text-align: center;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    padding: 10px;
}

/* Buttons */
button {
    float: right;
    background-color: #444;
    color: #fff;
    border: 1px solid #666;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0px 0px 0px 20px;
}

button:hover {
    background-color: #555;
}

/* Select Dropdown */
select {
    background-color: #444;
    color: #fff;
    border: 1px solid #666;
    padding: 5px;
}

/* Textareas */
textarea {
    background-color: #222;
    color: #ddd;
    width: 100%;
    height: 100%;
    resize: none;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #555;
}

/* Command Display */
#lastCommand {
    font-family: 'Courier New', Courier, monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #333;
    padding: 5px;
    border-radius: 3px;
}

/* Table Layout */
.table {
    display: table;
    height: 500px;
    width: 100%;
}

.cell {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
}

/* Sections */
section {
    margin: 10px 5px;
    position: relative;
}

/* Improve Visibility */
a, label {
    color: #ccc;
}

ul
{
    line-height: 1.5;
}
