:root {
    --primary-purple: #712a84;
    --primary-yellow: #FFD700;
    --primary-blue: #2ea3f2;
    --primary-red: #c12026;

    --status-not-running: var(--primary-red);
    --status-running: var(--primary-yellow);
    --status-success: var(--primary-blue);
    --status-error: var(--primary-red);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    flex: 1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-blue);
    padding: 1rem;
    color: white;
}

.nav .links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.logo {
    height: 40px;
}

h1 {
    text-align: center;
    margin-top: 2rem;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    column-gap: 2rem;
    flex-wrap: wrap;
}

.buttons {
    padding-bottom: 10px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.status {
    display: inline-block;
    margin-left: 1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
    color: white;
}

.status.not-running {
    background-color: var(--status-not-running);
}

.status.running {
    background-color: var(--status-running);
}

.status.success {
    background-color: var(--status-success);
}

.status.error {
    background-color: var(--status-error);
}

footer {
    background-color: var(--primary-purple);
    color: white;
    text-align: center;
    margin-top: auto;
}
