:root {
    --primary-color: #5ce1e6;
    font-family: 'Courier New', Courier, monospace;
}

button {
    cursor: pointer !important;
    background-color: var(--primary-color);
    border-radius: 5px;
    border: none;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}

.content {
    max-width: 800px;
    margin: auto;
    height: 100%;
    width: 100%;
    flex: 1;
    padding: 0 1rem;
}

footer {
    min-width: 100vw;
    text-align: center;
    color: grey;
    padding: 3px 0 3px 0;
}

nav {
    border: 1px solid slategray;
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    background-color: var(--primary-color);
}

nav ul {
    display: flex;
    padding: 0;
    justify-content: space-around;
}

.article-title {
    text-align: center;
    text-decoration: underline;
}

h1 {
    margin: 0 0 2rem 0;
}

nav a {
    padding: 1rem 2rem;
    color: black;
}

.awol-content {
    width: 100%;
}

.awol__button__create {
    padding: .6rem 1.2rem;
    margin: 0 .25rem .5rem 0;
    position: relative;
    font-size: 1rem;
    cursor: pointer;
}

.table-options {
    text-align: right;
}

.table-container {
    overflow: scroll;
    width: 100%;
    scrollbar-gutter: stable;
}

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

table tr:nth-child(even) {
    background-color: lightgray;
}

th {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
}

td,
th {
    padding: 1rem 2rem;
    text-align: center;
    border: 2px solid slategray;
}

.form__label {
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.small-form__section {
    width: 100%;
    max-width: 400px;
    margin: 5rem auto auto auto;
    border: 1px solid slategray;
    border-radius: 10px;
    padding: 2rem;
}

.form__input {
    margin: 5px 0 1rem 0;
    width: 100%;
    min-height: 2rem;
    border-radius: 5px;
    border: 1px solid grey;
    padding: 0 5px;
}

.form__button {
    width: 100%;
    padding: 8px 0;
    background-color: var(--primary-color);
    border: 1px solid slategray;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 5px;
}

.article-section-title {
    text-decoration: underline;
    margin: 1rem 0 1rem;
}

.article-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-err-msg {
    padding: 0 1rem 1rem;
    text-align: center;
    color: red;
}

.form-scs-msg {
    padding: 0 1rem 1rem;
    text-align: center;
    color: #61C354;
}

.center-text-container {
    padding: .4rem 0;
    text-align: center;
    width: 100%;
}