body {
    font-family: Arial;
    font-size: 12px;
}
#container{
    margin: 0 auto;
    width: 800px;
}

#header {
    background-color: white;
}

#title {
    color: white;
    background-color: black;
    padding: 10px;
    margin-top: 25px;
}

#content {
    padding: 10px;
    background-color: #222;
}

.table {
    width: 100%;
    border-collapse: collapse;

}

.table-head {
    background-color: #0090d2;
    color: white;
    text-align: left;
    height: 30px;
}

.table-row-light {
    color: black;
    background-color: #ddd;
}

.table-row-dark {
    color: black;
    background-color: #bbb;
}

.table-row-empty {
    color: black;
    background-color: #FFBDBD;
    text-align: center;
}

.message {
    color: white;
}

.error {
    color: red;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.table a {
    color: black;
}