.body-wrapper-min {
    max-width: 75rem;
    margin: auto;
}

.body-wrapper {
    max-width: 75rem;
    margin: 3rem auto;
}

.admin-page-title {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.page-title {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.standard-link {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 1rem 0rem;
    padding: 1rem 3rem;
    text-decoration: none;
    color: white;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    background: #2e2e2e;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.standard-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-style: none;
}

.small-link {
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.standard-admin-action-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 0.8rem;
    margin: 0;
    margin-left: 1rem;
    padding: 0.5rem;
    width: 5.5rem;
}

.blue-text {
    color: #1C5394;
}

.strikethrough {
    text-decoration: line-through;
}

.monospace {
    font-family: "Roboto Mono", monospace;
    font-weight: 300;
}

.error-message {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.75rem auto;
    max-width: 40rem;
    height: 3.8rem;
    background: #ff8f8f;
    color: black;
    text-align: center;
    border-radius: 5px;
    border: 1px solid red;
}

.notification-message {
    background: #97ff97;
    color: black;
    border: 1px solid green;
}

.uppercase {
    text-transform: uppercase;
}

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

table {
    width: 100%;
}

table th {
    text-align: left;
}

table td {
    text-align: right;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.standard-textfield {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    height: 3rem;
    border-radius: 6px;
    margin: 0.5rem 0;
    padding: 0 0.5rem;
    font-size: 1rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    border: 1px solid #c4c4c4;
}

.standard-select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0rem;
    padding: 0.5rem 1rem;
    width: 8rem;
    text-decoration: none;
    color: black;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    background: white;
    border: 1px solid #2e2e2e;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.pagination-links {
    margin: 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.pagination-links a {
    color: #2e2e2e;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}

.hidden {
    display: none;
}

@media (max-width: 57rem) {
    .body-wrapper {
        margin: 0 1rem;
    }
    .admin-page-title {
        display: inline-block;
        font-size: 1.75rem;
        font-weight: 400;
        width: 100%;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        text-transform: uppercase;
    }
    .page-title {
        font-size: 2rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        display: inline-block;
    }
    .standard-textfield {
        height: 2rem;
    }
    .desktop-only {
        display: none;
    }
}