/* CSS for the marks_for_user page. */


/* ---- Overall page ---- */

* {
    font-family: Helvetica, Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 20px;
}

.header {
    background-color: #3ea308;
    padding: 0;
    max-width: 800px;
    margin: 10px 0;
    border: 1px solid black;
    display: flex;
    align-items: center;
}

.brand {
    font-size: 1.8em;
    font-weight: bold;
    margin: 0.6em 1.5em 0.6em 0.8em;
}

.user-section {
    margin: 0.8em;
}

.content-panel {
    max-width: 800px;
    margin: 10px 0;
}

.footer {
    margin: 10px 0;
}

/* ---- Tabs ---- */

.tabs {
    margin-bottom: -2px;
}


.tabs button {
    border-color: black;
    border-width: 2px;
    border-radius: 6px 6px 0 0;
    border-style: solid solid hidden solid;
    padding: 3px 3px 2px 3px;
    margin: 0 2px 0 2px;
    color: white;
    background-color: grey;
}

.tabs button:hover {
    background-color: black;
}

.tabs button.active {
    color: black;
    background-color: white;
}

/* ---- Forms ---- */

.access-form.active {
    display: flex;
    flex-direction: column;
    border: solid black 2px;
    gap: 10px;
    padding: 10px;
}
.access-form {
    display: none;
}

.access-form-panel {
    display: grid;
}

.access-form-panel {
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 2px 6px;
    align-items: center;
}

.access-form-title {
    text-align: center;
}

.access-form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
