* {
    box-sizing: border-box;
}
body {
    font-family: 'Fira Mono', system-ui;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.container-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-home p {
    width: 22em;
    font-family: 'Fira Mono', monospace;
    text-align: center;
}

.container {
    width: 62em;
    max-width: 96%;
    margin: 2%;
}

table.results {
  border-collapse: collapse;
  max-width: 100%;
}


table.results tr {
  border-bottom: solid;
  border-width: 1px 0;
}

table.results tr td {
    padding: 12px 4px;
}

table.results tr td.pass {
    background-color: #d3f9d8;
    width: 4em;
    text-align: center;
}

table.results tr td.fail {
    background-color: #ffc9c9;
    width: 4em;
    text-align: center;
}

table.results tr td.warn {
    background-color: #ffd8a8;
    width: 4em;
    text-align: center;
}

table.results tr td.name {
    width: 18em;
    word-break: break-all;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

/*
Django Messages formatting
*/

.messages {
    list-style: none;
    margin: 1em 0 2em;
    padding: 0;
}

.messages li {
    padding: 1em;
    margin-bottom: 1em;
    width: 100%;
    line-height: 2.0em;
}

.messages li.info, .messages li.debug {
    background-color: #d0ebff;
}

.messages li.success {
    background-color: #b2f2bb;
}

.messages li.warning {
    background-color: #ffec99;
}

.messages li.error {
    background-color: #ffe3e3;
}
