body {
    background-color: #66616c;
    font-family: 'Roboto Mono', monospace;
}

header {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 25px;
    padding-top: 5px;
}

.app {
    min-width: 800px;
    max-width: 60%;
    margin: 0 auto;
}

.project-selector {
    padding: 20px;
}

.operations {
    padding-top: 15px;
    padding-bottom: 15px;
}

.project-info {
    padding-left: 25px;
}

.operations-link {
    color: white;
    border: 1px dashed lightgray;
    border-radius: 1px;
    font-size: 14px;
    text-decoration: none;
}

.operations-link:hover {
    background-color: #3e3649;
    border: 1px dashed gray;
    font-weight: bold;
}

.login {
    color: white;
    padding-left: 25px;
}

.update-options {
    color: white;
}

main {
    padding: 40px;
}

h1,
h2,
h3,
a,
p {
    color: white;
}

.navbar a:hover {
    color: grey;
}

button {
    font-family: 'Roboto Mono', monospace;
}

.debug p {
    color: purple;
}

.debug h2 {
    color: yellow;
}

table, th, td {
    border: 1px solid white;
}

th, td {
    color: white;
}

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

tr:nth-child(even) {
    background-color: #3e3649;
}

tr:nth-child(odd) {
    background-color: #27222e;
}