/*
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */

@charset "UTF-8";
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
/*
 ********************************************************** SASS initialisations
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,700';

:root {
    --max-width: 1280px;
    --small-width: 800px;
    --menu-tab-min-width: 150px;
    --large-radius: 16px;
    --small-radius: 8px;
    --font-family: Open Sans, Arial, Helvetica, sans-serif;
    --font-size: 14px;
    --colour-base: #236aea;
    --colour-base-contrast: #ffffff;
    --colour-text: #05050a;
    --colour-light: oklch(from var(--colour-base) 96% 0.05 h);
    --colour-dark: oklch(from var(--colour-base) 30% calc(c * 0.75) h);
    --colour-background-dark: #eff6ff;
    --colour-background: #f4f9ff;
    --colour-background-light: #fafcff;
    --colour-link: hsl(from var(--colour-base) h calc(s * 1.5) calc(l * 0.5));
    --colour-link-active: var(--colour-base);
    --colour-button: var(--colour-base);
    --colour-button-text: var(--colour-base-contrast);
    --colour-button-hover: oklch(from var(--colour-base) calc(l * 0.8) c h);
    --colour-button-secondary: var(--colour-light);
    --colour-button-secondary-text: var(--colour-dark);
    --colour-button-secondary-hover: oklch(from var(--colour-light) calc(l * 0.95) c h);
    --colour-input: var(--colour-base);
    --colour-border-dark: oklch(from var(--colour-base) l c h);
    --colour-border-light: oklch(from var(--colour-base) 90% 0.05 h);
    --colour-table-row-heading: var(--colour-base);
    --colour-table-heading-text: var(--colour-base-contrast);
    --colour-table-row-highlight: var(--colour-background-light);
    --colour-table-row-lowlight: var(--colour-background);
    --colour-table-help: rgb(from var(--colour-text) r g b / 50%);
    --colour-required: #860606;
    --colour-table-required: var(--colour-required);
    --colour-table-row-focus: var(--colour-light);
    --colour-shadow: rgb(from var(--colour-base) r g b / 20%);
    --shadow: 3px 3px 6px -3px var(--colour-shadow);
    --colour-success: lightgreen;
    --colour-warning: orange;
    --colour-error: #ff0000;
}

html.dark {
    --colour-base: #354067;
    --colour-base-contrast: #b8b8d3;
    --colour-text: #9a9ab6;
    --colour-light: oklch(from var(--colour-base) clamp(0%, calc(l * 0.5), 50%) 0.05 h);
    --colour-dark: oklch(from var(--colour-base) clamp(50%, calc(l * 2), 100%) calc(c * 0.75) h);
    --colour-background: #222d57;
    --colour-background-dark: oklch(from var(--colour-background) calc(l * 0.9) c h);
    --colour-background-light: oklch(from var(--colour-background) calc(l / 0.9) c h);
    --colour-link: oklch(from var(--colour-base) 70% c h);
    --colour-link-active: oklch(from var(--colour-link) calc(l * 1.1) calc(c * 1.25) h);
    --colour-border-dark: var(--colour-base);
    --colour-border-light: oklch(from var(--colour-table-row-lowlight) calc(l * 0.75) calc(c * 0.97) h);
    --colour-table-row-heading: var(--colour-base);
    --colour-table-heading-text: var(--colour-base-contrast);
    --colour-table-required: oklch(from var(--colour-required) calc(l * 0.6) c h);
    --colour-table-row-focus: var(--colour-light);
    --colour-shadow: rgb(from var(--colour-base-contrast) r g b / 10%);
    --shadow: inset 4px 4px 10px -5px var(--colour-shadow);
    --colour-success: darkgreen;
    --colour-warning: #914102;
    --colour-error: #520404;
    background-image: url(sar-dark.png);
}

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    background-color: var(--colour-background-light);
    background-image: url(/image/background);
}

body {
    background-color: var(--colour-background-dark);
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--colour-text);
}

/*
 ********************************************************** GENERAL PAGE STYLING
 */
html {
    height: 100%;
}

body {
    padding: 0;
    min-height: 100%;
    height: fit-content;
    margin: 0 auto;
    top: 0;
    float: none;
    position: relative;
    text-align: left;
    color: var(--colour-text);
    max-width: 1400px;
}

@media screen and (min-width: 800px) {
    body {
        padding: 0 2em;
        box-shadow: var(--colour-shadow) 0 0 1em 0.25em;
    }
}

@media screen and (max-width: 799px) {
    body {
        font-size: calc(var(--font-size) * 1.1);
        padding: 0 5px;
    }
}

a:link {
    color: var(--colour-link);
    text-decoration: none;
}

a:visited {
    color: var(--colour-link);
    text-decoration: none;
}

a:active {
    color: var(--colour-link);
    text-decoration: none;
    color: var(--colour-link-active);
}

a:hover {
    color: var(--colour-link-active);
    text-decoration: underline;
}

a.action {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin: 4px;
    height: initial;
    border: solid 1px var(--colour-border-light);
    border-radius: var(--small-radius);
    background-color: var(--colour-light);
    box-sizing: border-box;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    margin: 2px;
    flex-shrink: 0;
}

a.action svg {
    margin-right: 4px;
}

a.action:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

h1, h3, .h3-heading, h2, .h2-heading, .h1-heading {
    color: var(--colour-dark);
    font-size: 150%;
    font-weight: bold;
}

h2, .h2-heading {
    font-size: 133%;
}

h3, .h3-heading {
    font-size: 117%;
}

img {
    border: 0;
}

#privileges {
    z-index: 999;
    width: 200px;
    top: 0;
    left: 0;
    float: left;
    display: block;
}

#container {
    top: 0;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

header {
    display: flex;
    align-items: center;
}

@media screen and (max-width: calc(var(--small-width) - 1px)) {
    header {
        flex-direction: column;
    }

    header #header {
        text-align: center;
    }

    header #schoolname {
        padding-left: 0;
    }
}

#header {
    flex-grow: 1;
    padding: 0;
    min-height: 65px;
    text-align: left;
}

#logo {
    display: inline-block;
    margin: 0.5em clamp(5px, 2vw, 15px) 0;
}

#logo img {
    height: clamp(75px, 20vw, 125px);
}

#schoolname {
    padding-left: 10px;
    color: var(--colour-text);
    font-size: clamp(25px, 5vw, 30pt);
}

#breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 10px 5px;
    font-size: calc(var(--font-size) / 1.2);
}

#breadcrumb .switch-button {
    background: var(--colour-base);
    color: var(--colour-base-contrast);
    font-size: 1rem;
    font-weight: bold;
}

span.far, span.fas, span.fa-layers {
    display: inline-block;
    width: 1.25em;
}

footer {
    display: inline-block;
    position: sticky;
    top: 100vh;
    height: fit-content;
    width: 100%;
    text-align: center;
    padding: 0 1em;
}

#footercopyright {
    display: inline-block;
}

#footercopyright img {
    height: 1em;
}

#footersupport {
    display: none;
    border: 1px solid var(--colour-border-light);
    border-radius: var(--large-radius);
    background-color: var(--colour-base-contrast);
    padding: 5px;
    margin: 0 0 1em 0;
    color: gray;
    font-size: 0.8em;
}

#debug-link {
    cursor: pointer;
}

.transfer-pin {
    text-align: center;
    font-size: 5em;
    font-weight: bold;
}

/*
 *********************************************************** NOTIFICATION BLOCKS
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
div.notification .heading, div.warningbanner .heading {
    font-size: 1.5em;
    margin-bottom: 0.25em;
    font-weight: bold;
}

.notification {
    border: 1px solid var(--colour-base);
    border-radius: var(--large-radius);
    padding: 0.5em;
    min-height: 4em;
    background-color: var(--colour-light);
    position: relative;
    margin: 5px 30px 5px;
    display: flex;
    align-items: center;
}

.notification .vspinner, .notification .spinner {
    color: var(--colour-base);
    text-align: center;
    transform-origin: center center;
    margin-right: 0.5em;
    align-self: normal;
}

.notification .spinner {
    height: 4em;
    text-align: center;
    fill: var(--colour-base);
    animation: rotate 3s linear infinite;
    z-index: 2;
}

.notification .spinner svg {
    width: 5em;
    height: 4em;
}

.notification.error {
    border-color: var(--colour-error);
    background-color: rgb(from var(--colour-error) r g b/10%);
}

.notification.error .vspinner {
    color: var(--colour-error);
}

.notification.warning {
    border-color: var(--colour-warning);
    background-color: rgb(from var(--colour-warning) r g b/10%);
}

.notification.warning .vspinner {
    color: var(--colour-warning);
}

.notification .vspinner {
    height: 4em;
    text-align: center;
    animation: pulse 2s infinite;
}

.notification .vspinner svg {
    width: 5em;
    height: 4em;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        filter: drop-shadow(0 0 0);
    }
    5% {
        filter: drop-shadow(0 0 5px);
    }
    10% {
        transform: scale(1);
    }
    65% {
        filter: drop-shadow(0 0 100px);
    }
    100% {
        transform: scale(0.9);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 350px) {
    .notification {
        flex-wrap: wrap;
        justify-content: center;
    }

    .notification .vspinner, .notification .spinner {
        align-self: center;
        margin: 1em 0;
    }
}

div.warningbanner, div#javascript-warning {
    position: relative;
    border: none;
    padding: 1em 0.5em;
    background: var(--colour-base);
    background: linear-gradient(180deg, hsl(from var(--colour-base) h s calc(l * 0.8)) 0%, var(--colour-base) 0.75em, var(--colour-base) 100%);
    color: var(--colour-base-contrast);
    margin: 0 auto 0.5em;
    border-radius: 0 0 var(--large-radius) var(--large-radius);
    display: flex;
    max-width: calc(var(--max-width) - 2em);
    box-shadow: 0 0 10px 0 var(--colour-shadow);
}

div.warningbanner:nth-of-type(n+2), div#javascript-warning:nth-of-type(n+2) {
    border-radius: var(--large-radius);
    margin-top: 0.5em;
}

div.warningbanner.hidden, div#javascript-warning.hidden {
    display: none;
}

div.warningbanner .svgicon, div#javascript-warning .svgicon {
    height: 4em;
    text-align: center;
    fill: var(--colour-base-contrast);
    padding: 0 1em;
}

div.warningbanner .svgicon svg, div#javascript-warning .svgicon svg {
    width: 5em;
    height: 4em;
}

div.warningbanner .svgicon svg, div#javascript-warning .svgicon svg {
    height: 4em;
}

div.warningbanner div.close, div#javascript-warning div.close {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 0;
    padding-right: 0.5em;
    font-size: 2em;
}

div.warningbanner div.close a, div#javascript-warning div.close a {
    color: white;
}

div.warningbanner div.close a:hover, div#javascript-warning div.close a:hover {
    text-decoration: none;
}

div.warningbanner .message a, div#javascript-warning .message a {
    font-weight: bold;
    color: white;
}

noscript {
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--colour-background);
    z-index: 99998;
}

#javascript-warning {
    top: 33vh;
    border-radius: var(--large-radius) !important;
}

/*
 ******************************************************* NOTIFICATIONS: Progress
 */
.progresslog {
    padding-left: 1em;
}

.progresslog li {
    line-height: 18px;
    padding-bottom: 1px;
}

.progresslog .success {
    display: none;
    background: url(success.png) no-repeat left 2px;
    padding: 0 0 0 20px;
    list-style: none;
    margin: 0;
}

.progresslog .warning {
    background: url(warning.png) no-repeat left 2px;
    padding: 0 0 0 20px;
    list-style: none;
    margin: 0;
}

.progresslog .error {
    background: url(error.png) no-repeat left 2px;
    padding: 0 0 0 20px;
    list-style: none;
    margin: 0;
}

/*
 ******************************************************************** FORM TABLE
 */
.formtable .helptext {
    color: var(--colour-table-help);
    font-size: 0.9em;
}

.formtable table {
    width: 100%;
    float: none;
}

.formtable td, .formtable th {
    vertical-align: top;
}

.formtable .formtable_section {
    text-align: left;
}

.formtable .formtable_heading {
    text-align: right;
    width: 33%;
    font-weight: bold;
}

.formtable .formtable_data {
    width: 67%;
}

.formtable .formtable_datahelp {
    width: 34%;
}

.formtable .formtable_help {
    width: 34%;
}

.formtable .formtable_text {
    padding-top: 0.25em;
}

.formtable div.control {
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 100;
    padding: 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.formtable div.control:empty {
    display: none;
}

.formtable div.control.is-floating {
    box-shadow: 0 -10px 10px 0 var(--colour-shadow);
    background-color: var(--colour-background-dark);
    border-top: 1px solid var(--colour-border-light);
    border-radius: var(--small-radius) var(--small-radius) 0 0;
    transition: all 0.1s ease;
    width: calc(100% - 20px);
}

@media print {
    .formtable div.control.is-floating {
        display: none;
    }
}

form:valid p#form-validation {
    display: none;
}

div.formtable p#form-validation {
    display: none;
}

form:invalid p#form-validation {
    color: var(--colour-table-required);
}

form ul#invalid-elements {
    width: 50%;
    margin: auto;
    color: var(--colour-table-required);
    margin-bottom: 1em;
}

@media screen and (max-width: 799px) {
    #body {
        overflow: visible !important;
    }

    .formtable td, .formtable th, .formtable .formtable_data, .formtable .formtable_datahelp, .formtable .formtable_heading, .formtable .formtable_help {
        text-align: left;
        width: 100%;
        display: block;
        padding: 0;
        margin-top: 0.5em;
    }

    .formtable .helptext {
        font-size: 0.8em;
        font-style: italic;
        padding-left: 1em;
    }

    .formtable div.control {
        border-radius: 0; /* Remove corners for a flush look */
    }
}

.weight-percent {
    color: var(--colour-muted, #666);
    font-size: 0.9em;
    margin-left: 0.25em;
}

.weight-total {
    display: inline-block;
    margin-top: 0.5em;
    color: var(--colour-muted, #666);
    font-weight: 600;
}

.weight-total.weight-total--off {
    color: var(--colour-warning);
}

/*
 ************************************************************************* TABLE
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
table {
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    background-color: transparent;
    width: 100%;
    margin-top: 1px;
}

table tbody ~ tbody tr:first-child > td, table tbody ~ tbody tr:first-child > th, table tbody ~ tfoot tr:first-child > td, table tbody ~ tfoot tr:first-child > th, table thead ~ tbody tr:first-child > td, table thead ~ tbody tr:first-child > th, table thead ~ tfoot tr:first-child > td, table thead ~ tfoot tr:first-child > th {
    border-top: 1em solid transparent;
    background-clip: padding-box;
    border-top: solid var(--colour-border-light) 1px;
}

table thead > tr > td, table thead > tr > th {
    margin-bottom: -1px;
}

table thead + tbody > tr:first-child > td, table thead + tbody > tr:first-child > th {
    margin-top: 0;
    border-top: 0;
}

table thead > tr:first-child > th:first-child, table thead > tr:first-child > td:first-child,
table tfoot > tr:first-child > th:first-child,
table tfoot > tr:first-child > td:first-child,
table tbody:not(thead + tbody) > tr:first-child > th:first-child,
table tbody:not(thead + tbody) > tr:first-child > td:first-child {
    border-top-left-radius: var(--large-radius);
}

table thead > tr:first-child > th:last-child, table thead > tr:first-child > td:last-child,
table tfoot > tr:first-child > th:last-child,
table tfoot > tr:first-child > td:last-child,
table tbody:not(thead + tbody) > tr:first-child > th:last-child,
table tbody:not(thead + tbody) > tr:first-child > td:last-child {
    border-top-right-radius: var(--large-radius);
}

table tbody > tr:last-child > td, table tbody > tr:last-child > th, table tfoot > tr:last-child > td, table tfoot > tr:last-child > th {
    margin-bottom: 1px;
}

table tbody > tr:last-child > th:first-child, table tbody > tr:last-child > td:first-child, table tfoot > tr:last-child > th:first-child, table tfoot > tr:last-child > td:first-child {
    border-bottom-left-radius: var(--large-radius);
}

table tbody > tr:last-child > th:last-child, table tbody > tr:last-child > td:last-child, table tfoot > tr:last-child > th:last-child, table tfoot > tr:last-child > td:last-child {
    border-bottom-right-radius: var(--large-radius);
}

table.rowhighlight > thead tr > th, table.rowhighlight > thead tr > td {
    border: none;
    background-color: var(--colour-table-row-heading);
}

table.rowhighlight tr > td, table.rowhighlight tr > th {
    border-top: solid var(--colour-border-light) 1px;
}

table.rowhighlight tr > td:first-child, table.rowhighlight tr > th:first-child {
    border-left: solid var(--colour-border-light) 1px;
}

table.rowhighlight tr > td:last-child, table.rowhighlight tr > th:last-child {
    border-right: solid var(--colour-border-light) 1px;
}

table.rowhighlight tr:last-child > td, table.rowhighlight tr:last-child > th {
    border-bottom: solid var(--colour-border-light) 1px;
}

table.rowhighlight tr:nth-child(2n) > td, table.rowhighlight tr:nth-child(2n) > th {
    background-color: var(--colour-table-row-lowlight);
}

table.rowhighlight tr:nth-child(2n) > td:has(h3), table.rowhighlight tr:nth-child(2n) > th:has(h3) {
    background-color: var(--colour-light) !important;
}

table.rowhighlight tr:nth-child(2n-1) > td, table.rowhighlight tr:nth-child(2n-1) > th {
    background-color: var(--colour-table-row-highlight);
}

table.rowhighlight tr:nth-child(2n-1) > td:has(h3), table.rowhighlight tr:nth-child(2n-1) > th:has(h3) {
    background-color: var(--colour-light) !important;
}

table.rowhighlight tr.warning td, table.rowhighlight tr.warning th {
    background-color: rgb(from var(--colour-warning) r g b/0.5);
}

table.rowhighlight tr.error td, table.rowhighlight tr.error th {
    background-color: rgb(from var(--colour-error) r g b/0.5);
}

table.input-highlight tr:focus-within > td, table.input-highlight tr:focus-within > th {
    background-color: var(--colour-table-row-focus);
}

table.checkedhighlight tr:nth-child(2n-1) td:nth-child(2n-1), table.checkedhighlight tr:nth-child(2n-1) th:nth-child(2n-1) {
    background-color: var(--colour-background);
}

table.checkedhighlight tr:nth-child(2n-1) > td:nth-child(2n), table.checkedhighlight tr:nth-child(2n-1) > th:nth-child(2n), table.checkedhighlight tr:nth-child(2n) > td:nth-child(2n-1), table.checkedhighlight tr:nth-child(2n) > th:nth-child(2n-1) {
    background-color: var(--colour-table-row-highlight);
}

table.checkedhighlight tr:nth-child(2n) td:nth-child(2n), table.checkedhighlight tr:nth-child(2n) th:nth-child(2n) {
    background-color: var(--colour-table-row-lowlight);
}

table h3:before {
    content: "●";
    padding: 0 0.5em;
    color: var(--colour-border-light);
    text-shadow: 2px 2px 2px var(--colour-shadow);
}

tr.faded {
    color: silver;
}

th.sub {
    font-weight: bold;
    font-style: italic;
}

th.tablesorter-header {
    background-repeat: no-repeat;
    background-position: right 8px;
    cursor: pointer;
    padding-right: 20px;
    background-image: url(tsort.bg.gif);
}

th.tablesorter-headerSortDown {
    background-image: url(tsort.asc.gif);
}

th.tablesorter-headerSortUp {
    background-image: url(tsort.desc.gif);
}

th.tablesorter-header.sorter-false {
    background-image: none;
}

td, th {
    border-color: var(--colour-border-dark);
    border-width: 1px;
    padding: 8px;
    margin: 0;
    vertical-align: top;
}

td .faded, th .faded {
    opacity: 0.55;
}

td.right_border_double, th.right_border_double {
    border-right-style: double !important;
    border-right-width: 3px !important;
}

td .subhead, th .subhead {
    font-size: 1.2em;
    font-weight: bold;
}

.table_heading td, thead tr td, thead tr th, .table_heading th {
    background-color: var(--colour-table-row-heading) !important;
    color: var(--colour-table-heading-text);
}

.rowheading {
    text-align: right;
    font-weight: bold;
}

table.narrow {
    width: auto;
}

table.compact td, table.compact th {
    padding: 2px 4px 2px 4px;
    font-size: calc(var(--font-size) * 0.95);
}

@media only screen and (max-width: 799px) {
    table {
        border-radius: var(--small-radius);
        overflow: hidden;
    }

    table thead {
        display: none;
    }

    table tr {
        display: block;
        padding: 1em;
        margin-bottom: -1px;
        overflow: hidden;
        border: solid var(--colour-border-light) 1px;
    }

    table tr:first-child {
        border-radius: var(--small-radius) var(--small-radius) 0 0;
    }

    table tr:last-child {
        margin-bottom: 0;
        border-radius: 0 0 var(--small-radius) var(--small-radius);
    }

    table tr:nth-child(2n) {
        background-color: var(--colour-table-row-lowlight);
    }

    table tr:nth-child(2n):has(h3) {
        background-color: var(--colour-light);
    }

    table tr:nth-child(2n-1) {
        background-color: var(--colour-table-row-highlight);
    }

    table tr:nth-child(2n-1):has(h3) {
        background-color: var(--colour-light);
    }

    table tr td, table tr th {
        display: block;
        text-align: left !important;
        background-color: transparent !important;
        border: 0 !important;
    }

    table tr td[data-label]::before, table tr th[data-label]::before {
        display: block;
        content: attr(data-label);
        font-style: italic;
        font-size: 90%;
        opacity: 50%;
        color: var(--colour-table-label-text);
    }
}

/* Pivot table overrides */
.pvtUi {
    color: var(--colour-table-heading-text) !important;
}

table.pvtTable thead tr th, table.pvtTable tbody tr th {
    background-color: var(--colour-table-row-heading) !important;
}

#output > table > tr td.pvtUiCell, #output > table > tr th.pvtUiCell {
    color: black;
}

.outline td, .outline th {
    border-collapse: collapse;
    border: 1px solid black;
}

/*
 ******************************************************************* ASSESSMENTS
 */
/*
ADAM: Academic Data Manager

Written by Philip Norton <philip@adam.co.za>
Copyright (c) 2005-present: ADAM EduTech

This software is not free. You may not distribute this source code
or make use of more copies of this software running simultaneously
than has been specifically agreed in your Service Level Agreement.
*/
/*
    Author     : Philip
*/
.deletedassessment {
    text-decoration: line-through;
    color: gray;
    font-style: italic;
}

.hiddenassessment {
    color: gray;
    font-style: italic;
}

.ass-markcol {
    text-align: center;
}

.ass-markentry {
    width: 2em;
    text-align: right;
    border: 1px solid gray;
    padding-right: 5px;
}

.ass-totals {
    width: 2.5em;
    text-align: right;
    font-weight: bold;
    font-family: var(--font-family);
}

.ass-goals {
    width: 3.5em;
    text-align: right;
    font-family: var(--font-family);
}

.ass-goalicon {
    cursor: pointer;
}

.ass-error {
    background-color: #FFCCCC;
    color: red;
}

.ass-error {
    background-color: #FFCCCC;
    color: red;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

#marksheet td, #marksheet th {
    padding: 8px;
    padding-top: 4px;
    padding-bottom: 2px;
}

#marksheet tbody td:nth-of-type(1), #marksheet tbody th:nth-of-type(1) {
    width: 15%;
}

#marksheet tbody td:nth-of-type(2), #marksheet tbody th:nth-of-type(2) {
    width: 5%;
}

.absent-result {
    font-style: italic;
    color: grey;
}

/*
 ************************************************************ AGGREGATED RESULTS
 */
table#agg_calc .template {
    display: none;
}

/*
 ********************************************************************* MENU TABS
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
#menutabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    clear: both;
}

.menutab {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin: 4px;
    height: initial;
    border: solid 1px var(--colour-border-light);
    border-radius: var(--small-radius);
    background-color: var(--colour-light);
    box-sizing: border-box;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 2.25em;
    box-shadow: var(--shadow);
    text-transform: lowercase;
}

.menutab svg {
    margin-right: 4px;
}

.menutab:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

.menutab:hover {
    background-color: var(--colour-background-light);
    color: var(--colour-base);
}

.dark .menutab:hover {
    color: var(--colour-base-contrast);
}

.menutab.selected {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

.menutab.selected a:link, .menutab.selected a:visited {
    color: var(--colour-background-light) !important;
    font-weight: bold;
}

.menutab.menu-expander {
    width: calc(100% - 10px);
    text-align: center;
    padding-top: 6px;
}

nav.profilesections {
    margin: -30px 20px 0 20px;
    padding: 24px 10px 10px 10px;
    border-radius: 0 0 var(--large-radius) var(--large-radius);
    border-color: var(--colour-border-light);
    border-style: none solid solid solid;
    border-width: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--colour-background);
    box-shadow: var(--shadow);
    z-index: 1;
    position: relative;
    text-transform: lowercase;
}

a.action, button.action, input.action[type=submit], input.action[type=button] {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin: 4px;
    height: initial;
    border: solid 1px var(--colour-border-light);
    border-radius: var(--small-radius);
    background-color: var(--colour-light);
    box-sizing: border-box;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    font: inherit;
    color: var(--colour-link);
    cursor: pointer;
}

a.action svg, button.action svg, input.action[type=submit] svg, input.action[type=button] svg {
    margin-right: 4px;
}

a.action:hover, button.action:hover, input.action[type=submit]:hover, input.action[type=button]:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

a.action.selected, button.action.selected, input.action.selected[type=submit], input.action.selected[type=button] {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

a.action.selected:hover, button.action.selected:hover, input.action.selected[type=submit]:hover, input.action.selected[type=button]:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

ul.navigation {
    margin: 0;
}

ul.navigation li {
    background-size: 100% 200%;
    background-image: var(--colour-background-light);
    margin-bottom: 3px !important;
    margin-right: 5px;
    margin-left: -3px;
    padding: 2px 10px 2px 2px;
}

ul.navigation li:nth-child(3n-1) {
    clear: right;
}

/*
 ***************************************************************** MASONRY STUFF
 */
.section {
    float: left;
    display: block;
    padding: 10px;
    background-color: var(--colour-background);
    border: var(--colour-border-light) 1px solid;
    margin: 10px;
    width: calc(100% - 20px);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: var(--large-radius);
    box-shadow: var(--shadow);
}

.section li {
    margin-bottom: 0.4em;
    padding-left: 0.8em;
}

.section > h1, .section > .h2-heading, .section > .h3-heading, .section > h2, .section > h3 {
    margin-top: 0;
}

.grid .section {
    overflow-x: auto;
}

.grid .main-border {
    border: 1px solid var(--colour-base);
}

.col_full, .col_threequarter, .col_twothird, .col_half, .col_third,
.col_quarter {
    margin: 10px;
}

.col_sixth {
    margin: 5px;
}

@media (min-width: 900px) {
    .col_full {
        width: calc(100% - 20px);
    }

    .col_threequarter {
        width: calc(75% - 20px);
    }

    .col_twothird {
        width: calc(66.6666666667% - 20px);
    }

    .col_half {
        width: calc(50% - 20px);
    }

    .col_third {
        width: calc(33.3333333333% - 20px);
    }

    .col_quarter {
        width: calc(25% - 20px);
    }

    .col_sixth {
        width: calc(16.6666666667% - 10px);
    }
}

@media (min-width: 750px) and (max-width: 899px) {
    .col_full,
    .col_threequarter,
    .col_twothird,
    .col_half {
        width: calc(100% - 20px);
    }

    .col_third,
    .col_quarter {
        width: calc(33.3333333333% - 20px);
    }

    .col_sixth {
        width: calc(20% - 10px);
    }
}

@media (min-width: 600px) and (max-width: 749px) {
    .col_full,
    .col_threequarter,
    .col_twothird,
    .col_half {
        width: calc(100% - 20px);
    }

    .col_third,
    .col_quarter {
        width: calc(50% - 20px);
    }

    .col_sixth {
        width: calc(25% - 10px);
    }
}

@media (min-width: 450px) and (max-width: 599px) {
    .col_full,
    .col_threequarter,
    .col_twothird,
    .col_half,
    .col_third {
        width: calc(100% - 20px);
    }

    .col_quarter {
        width: calc(50% - 20px);
    }

    .col_sixth {
        width: calc(33.3333333333% - 10px);
    }
}

@media (max-width: 449px) {
    .col_full,
    .col_threequarter,
    .col_twothird,
    .col_half,
    .col_third,
    .col_quarter {
        width: calc(100% - 20px);
    }

    .col_sixth {
        width: calc(50% - 10px);
    }
}

.section_name, .section > h3 {
    font-weight: bold;
    font-size: calc(var(--font-size) * 4 / 3);
    text-transform: lowercase;
    text-align: left;
    color: var(--colour-dark);
    padding: calc(var(--large-radius) / 6) calc(var(--large-radius) / 3);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--colour-border-light);
}

.section.error {
    background-color: rgb(from var(--colour-error) r g b/30%);
    border: 1px solid var(--colour-error);
}

.section.error > h3 {
    border-bottom: 1px solid var(--colour-error);
}

.section.warning {
    background-color: rgb(from var(--colour-warning) r g b/30%);
    border: 1px solid var(--colour-warning);
}

.section.warning > h3 {
    border-bottom: 1px solid var(--colour-warning);
}

.section.info {
    background-color: rgb(from var(--colour-base) r g b/30%);
    border: 1px solid var(--colour-base);
}

.section.info > h3 {
    border-bottom: 1px solid var(--colour-base);
}

.section.success {
    background-color: rgb(from var(--colour-success) r g b/30%);
    border: 1px solid var(--colour-success);
}

.section.success > h3 {
    border-bottom: 1px solid var(--colour-success);
}

#menu .section {
    overflow: hidden !important;
    position: relative;
}

#menu .section .icon {
    position: absolute !important;
    bottom: 0;
    right: 0.5rem;
    font-size: 6em;
    color: var(--colour-base);
    opacity: 0.2;
}

.child_name {
    font-weight: bold;
    font-size: var(--font-size);
}

.showpostcontent {
    display: inline;
}

.showhidestring {
    text-align: right;
    font-weight: normal;
    font-size: 100%;
    font-family: var(--font-family), sans-serif;
    padding: 0 10px 0 0;
}

.showhidelink {
    color: #990000;
    letter-spacing: 0em;
}

/*
 *************************************************************** HTML: Form Tags
 */
*:focus {
    outline: 0;
}

*:focus-visible {
    outline: var(--colour-input) auto 2px;
}

button, input[type=submit], input[type=button] {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
    border: 1px solid var(--colour-button);
    padding: max(0.5em, var(--small-radius) / 3);
    cursor: pointer;
    background: var(--colour-button);
    font-weight: bold;
    color: var(--colour-button-text);
    margin: 0.5em;
    box-sizing: border-box;
    border-radius: var(--small-radius);
    display: inline-flex;
    align-items: center;
}

html.dark button, html.dark input[type=submit], html.dark input[type=button] {
    color-scheme: dark;
}

button:hover, input[type=submit]:hover, input[type=button]:hover {
    text-decoration: underline;
    background: var(--colour-button-hover);
}

button:disabled, input[type=submit]:disabled, input[type=button]:disabled {
    color: var(--colour-button-secondary-hover);
    background: var(--colour-button-secondary);
    text-decoration: none;
    border: 1px solid var(--colour-button-secondary-hover);
}

button:active, input[type=submit]:active, input[type=button]:active {
    text-decoration: underline;
    transform: translateY(2px) translateX(-1px);
    box-shadow: none;
}

button:focus-visible, input[type=submit]:focus-visible, input[type=button]:focus-visible {
    outline: var(--colour-light) auto 2px;
}

button.secondary, input.secondary[type=submit], input.secondary[type=button] {
    background: var(--colour-button-secondary);
    color: var(--colour-button-secondary-text);
}

button.secondary:hover, input.secondary[type=submit]:hover, input.secondary[type=button]:hover {
    background: var(--colour-button-secondary-hover);
}

button.secondary:focus-visible, input.secondary[type=submit]:focus-visible, input.secondary[type=button]:focus-visible {
    outline: var(--colour-base) auto 2px;
}

button .iconleft, input[type=submit] .iconleft, input[type=button] .iconleft {
    font-size: 1.1em;
    display: inline-block;
    border-right: 1px solid var(--colour-base-contrast);
    padding-right: 0.5em;
    margin-right: 0.75em;
}

button .iconright, input[type=submit] .iconright, input[type=button] .iconright {
    font-size: 1.1em;
    display: inline-block;
    border-left: 1px solid var(--colour-base-contrast);
    padding-left: 0.5em;
    margin-left: 0.75em;
}

button.secondary .iconleft, input.secondary[type=submit] .iconleft, input.secondary[type=button] .iconleft {
    border-right: 1px solid var(--colour-base);
}

button.secondary .iconright, input.secondary[type=submit] .iconright, input.secondary[type=button] .iconright {
    border-left: 1px solid var(--colour-base);
}

input {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
}

html.dark input {
    color-scheme: dark;
}

input[type=text] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

input[type=text]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input[type=password] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

input[type=password]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input[type=number] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

input[type=number]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=search] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

input[type=search]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input[type=email] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

input[type=email]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

input[type=date]:focus, input[type=time]:focus, input[type=datetime-local]:focus, input[type=month]:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

input::placeholder {
    color: var(--colour-input-placeholder);
    opacity: 30%;
}

textarea {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
    border: 1px solid var(--colour-input);
    border-bottom: inherit;
    border-radius: var(--small-radius) var(--small-radius) 0 var(--small-radius);
}

html.dark textarea {
    color-scheme: dark;
}

textarea:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

@media (max-width: calc(var(--small-width) - 1px)) {
    textarea {
        width: 100%;
    }
}

select {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

html.dark select {
    color-scheme: dark;
}

select:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

select[multiple] {
    background-color: var(--colour-background);
    border: 1px solid var(--colour-base);
    border-radius: 3px;
}

optgroup {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
    background-color: var(--colour-background);
    font-style: normal;
}

html.dark optgroup {
    color-scheme: dark;
}

option {
    font-family: var(--font-family) sans-serif;
    font-size: 1em;
    color: var(--colour-text);
}

html.dark option {
    color-scheme: dark;
}

option:checked {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

.required-field {
    color: var(--colour-table-required);
}

.customcheckbox {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    margin-bottom: 2px;
    user-select: none;
    /* Hide the browser's default checkbox */
    /* When the checkbox is checked, add a blue background */
    /* When the checkbox is checked, add a blue background */
    /* Create a custom checkbox */
    /* Style the checkmark/indicator */
}

.customcheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.customcheckbox input:disabled ~ .checkmark {
    background-color: var(--colour-base-contrast);
}

.customcheckbox input:checked ~ .checkmark {
    background-color: var(--colour-input);
}

.customcheckbox input:checked ~ .checkmark:after {
    display: block;
}

.customcheckbox input:focus-visible ~ .checkmark {
    box-shadow: 0 0 0 1px var(--colour-base);
}

.customcheckbox input:active ~ .checkmark {
    box-shadow: 0 0 0 1px var(--colour-base);
}

.customcheckbox:hover input ~ .checkmark {
    background-color: var(--colour-input);
}

.customcheckbox:hover input:disabled ~ .checkmark {
    background-color: grey;
}

.customcheckbox:hover input:checked ~ .checkmark {
    background-color: var(--colour-base-contrast);
}

.customcheckbox:hover input:checked ~ .checkmark:after {
    border: solid var(--colour-input);
    border-width: 0 3px 3px 0;
}

.customcheckbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--colour-base-contrast);
    border: 2px solid var(--colour-input);
    border-radius: 4px;
}

th .customcheckbox .checkmark {
    background-color: var(--colour-input);
    border: 2px solid var(--colour-base-contrast);
}

.customcheckbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.customcheckbox .checkmark:after {
    left: 5px;
    width: 7px;
    height: 12px;
    border: solid var(--colour-base-contrast);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radio-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.radio-options label.customradio {
    margin-right: 1em;
}

/*
 ******************************* CUSTOM RADIO
 */
.customradio {
    line-height: 1.75em;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Hide the browser's default radio button */
    /* Create a custom radio button */
    /* On mouse-over, add a grey background color */
    /* On mouse-over, add a grey background color */
    /* When the radio button is checked, add a blue background */
    /* Create the indicator (the dot/circle - hidden when not checked) */
}

.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.customradio .radiobtn {
    border: solid var(--colour-input) 2px;
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--colour-base-contrast);
    border-radius: 50%;
}

.customradio:hover input ~ .radiobtn, .customradio:hover input:checked ~ .radiobtn {
    background-color: var(--colour-input);
}

.customradio:hover input ~ .radiobtn:after, .customradio:hover input:checked ~ .radiobtn:after {
    background: var(--colour-base-contrast);
}

.customradio input:focus-visible ~ .radiobtn {
    box-shadow: 0 0 0 2px var(--colour-input);
}

.customradio input:checked ~ .radiobtn {
    background-color: var(--colour-base-contrast);
}

.customradio input:checked ~ .radiobtn:after {
    display: block;
}

.customradio input:active ~ .radiobtn {
    box-shadow: 0 0 0 1px var(--colour-input);
}

.customradio .radiobtn:after {
    content: "";
    position: absolute;
    display: none;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--colour-input);
}

span[disabled] {
    color: gray;
    /* On mouse-over, add a grey background color */
}

span[disabled] .customradio:hover input:not(:checked) ~ .radiobtn {
    background-color: rgba(0, 0, 0, 0);
}

@media print {
    /*
     * The default setting in most web browsers, when printing, is not to print the background colours. This means that
     * the custom check boxes and radio buttons will not show since these rely on background colour.
     */
    .customcheckbox .checkmark {
        border-color: black;
    }

    .customcheckbox .checkmark:after {
        border-color: black;
    }

    .customradio input:checked ~ .radiobtn {
        border-color: black;
    }

    .customradio .radiobtn {
        border-color: black;
    }

    .customradio .radiobtn:after {
        border: 4px solid black;
    }
}

input:-webkit-autofill {
    border-bottom: 1px solid var(--colour-input);
    margin-bottom: 2px;
}

input:-webkit-autofill:focus {
    border-bottom: 3px solid var(--colour-input);
    margin-bottom: 0;
}

/* Password fields */
.passwordfield-show, .passwordfield-hide {
    margin-left: 0.5em;
    color: var(--colour-input);
    cursor: pointer;
}

.passwordfield-hide {
    display: none;
}

/* OTP fields */
div.otp-input input {
    width: 2em;
    margin: 0.25em;
    text-align: center;
}

form.post-link {
    display: inline;
    padding: 0;
    margin: 0;
}

form.post-link button[type=submit], form.post-link input[type=submit] {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    margin: 4px;
    height: initial;
    border: solid 1px var(--colour-border-light);
    border-radius: var(--small-radius);
    background-color: var(--colour-light);
    box-sizing: border-box;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    margin: 2px;
    padding: 1px 8px;
    font-weight: normal;
    color: var(--colour-link);
}

form.post-link button[type=submit] svg, form.post-link input[type=submit] svg {
    margin-right: 4px;
}

form.post-link button[type=submit]:hover, form.post-link input[type=submit]:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

form.post-link button[type=submit]:focus, form.post-link input[type=submit]:focus {
    outline: var(--colour-base) auto 2px;
}

@media screen and (max-width: calc(var(--small-width) - 1px)) {
    #body {
        padding: 0.5em;
        overflow: auto;
    }

    input, textarea, select {
        max-width: calc(100vw - 4em);
    }
}

.token-input-input-token > input {
    border: none !important;
}

.token-input-dropdown ul li img {
    border-radius: 0.5em;
}

nav > a:active {
    text-decoration: underline;
    transform: translateY(2px) translateX(-1px);
    box-shadow: none;
}

.postlink {
    display: inline;
}

.postlink a {
    cursor: pointer;
}

/* FAMILY INFO */
.family {
    width: 100%;
    box-sizing: border-box;
    vertical-align: top;
}

.familymember {
    /* width: 50%; */
    vertical-align: top;
    box-sizing: border-box;
    display: inline-block;
    padding: 5px;
}

/* PUPIL COMMENTS */
.pupilcomment-staff-image {
    display: block;
    margin: 0.5em;
    float: left;
}

.pupilcomment-date {
    font-style: italic;
    font-size: 90%;
    color: gray;
    display: inline-block;
}

.pupilcomment-date:before {
    content: " — "; /* space-emdash-space */
}

.pupilcomment-staff {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.pupilcomment-category {
    font-weight: bold;
    margin-bottom: 0.25em;
}

/*
 ********************************************************************* TIMETABLE
 */
.lessoncount {
    margin-left: 1em;
    padding: 4px;
    cursor: pointer;
}

.lesson_highlight {
    background-color: #ecec3c;
}

/*
 ********************************************************* CSS for popup windows
 */
#backgroundPopup, .progress_fog {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--colour-background);
    border: 0 solid #cecece;
    z-index: 9;
    opacity: 0.8;
}

#popupContact {
    display: none;
    position: fixed;
    background: var(--colour-background);
    border: 2px solid var(--colour-border-light);
    z-index: 10;
    padding: 12px;
    font-size: 14px;
    overflow: auto;
}

#popupContact h1, #popupContact h2, #popupContact .h2-heading, #popupContact h3, #popupContact .h3-heading {
    text-align: left;
    color: var(--colour-base);
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px dotted var(--colour-base-contrast);
    padding-bottom: 2px;
    margin-bottom: 20px;
}

#popupContactClose {
    font-size: 14px;
    line-height: 14px;
    right: 6px;
    top: 4px;
    position: absolute;
    color: var(--colour-base);
    font-weight: 700;
    display: block;
}

.background_red {
    background-color: #FFDDDD;
    border-width: 1px;
}

.autocomplete-label {
    font-weight: bold;
}

.autocomplete-desc {
    font-size: 80%;
}

.validation {
    display: inline-block;
}

.validation .autocomplete-icon {
    display: inline;
    padding-right: 5px;
}

.validation .val_error {
    display: inline;
    color: var(--colour-error);
}

.validation .val_warning {
    display: inline;
    color: var(--colour-warning);
}

.validation .val_success {
    display: inline;
    color: var(--colour-success);
}

/*
 ********************************************************** SCRATCH LIST OPTIONS
 */
.scratch-more {
    display: none;
    color: gray;
}

.fieldlist {
    column-count: 3;
    box-sizing: border-box;
    width: calc(100% - 1px);
}

.fieldlist .header {
    font-weight: bold;
    margin-top: 1em;
}

.fieldlist .header:first-child {
    margin-top: 0em;
}

@media (min-width: 600px) and (max-width: 799px) {
    .fieldlist {
        column-count: 2;
    }
}

@media (max-width: 599px) {
    .fieldlist {
        column-count: 1;
    }
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

/*
 **************************************************************** PHOTO SETTINGS
 */
.photocard {
    display: inline-block;
    background: var(--colour-base-contrast);
    padding: 10px;
    margin: 5px;
    text-align: center;
    box-shadow: var(--shadow);
}

img.round, .round img {
    border-radius: 1em;
}

/*
 **************************************************************** CHART SETTINGS
 */
.areachart, .linechart, .scatterchart {
    display: inline-block;
    width: 100%;
    height: 500px;
}

/*
 ************************************************************** PRINTER SETTINGS
 */
@media screen {
    .printonly {
        display: none;
    }
}

@media print {
    body, table {
        font-size: 10pt;
    }

    td, th, .formtable_heading {
        padding: 2px;
    }

    nav.profilesections, #breadcrumb, #menutabs, #menu, header, #footer, .noprint {
        display: none;
    }

    .printonly {
        display: inherit;
    }

    div.warningbanner, #javascript-warning {
        display: none;
    }

    .keeptogether {
        page-break-inside: avoid;
    }
}

.rc-present,
.rc-late,
.rc-absent,
.rc-nottaken {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

/*
 **************************************************************** CONFIRM DIALOG
 */
dialog.adam-dialog {
    border: 1px solid var(--colour-border-light);
    border-radius: var(--large-radius);
    padding: 1.5em 2em;
    width: min(90%, 420px);
    background-color: var(--colour-background-light);
    box-shadow: 0 0.5em 1.5em var(--colour-shadow);
    color: var(--colour-text);
}

dialog.adam-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

dialog.adam-dialog[open] {
    animation: dialog-fade-in 0.15s ease-out;
}

dialog.adam-dialog .adam-dialog__title {
    margin: 0 0 0.5em;
    font-size: 1.25em;
    font-weight: bold;
    color: var(--colour-base);
}

dialog.adam-dialog .adam-dialog__content {
    margin-bottom: 1.5em;
    line-height: 1.5;
}

dialog.adam-dialog .adam-dialog__content p {
    margin: 0 0 0.5em;
}

dialog.adam-dialog .adam-dialog__input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.75em;
}

dialog.adam-dialog .adam-dialog__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5em;
}

dialog.adam-dialog .adam-dialog__buttons .adam-dialog__btn {
    margin: 0;
}

dialog.adam-dialog .adam-dialog__buttons .adam-dialog__btn--danger {
    background: var(--colour-required);
    border-color: var(--colour-required);
    color: var(--colour-base-contrast);
}

dialog.adam-dialog .adam-dialog__buttons .adam-dialog__btn--danger:hover {
    background: oklch(from var(--colour-required) calc(l * 0.85) c h);
}

/*
 ********************************************************************* REPORTING
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
.report-entry .report-comment .counter, .report-entry .report-lo .counter {
    float: right;
    bottom: -10px;
    right: 15px;
    position: absolute;
    background: var(--colour-light);
    font-size: 80%;
    border-radius: 0.5em;
    padding: 0 5px;
    z-index: 1;
}

.report-entry {
    display: inline-block;
    width: 100%;
    /* Immediate children of the .reportblock */
}

.report-entry div {
    box-sizing: border-box;
    float: left;
}

.report-entry .report-header {
    width: 100%;
}

.report-entry .reportblock {
    width: 100%;
}

.report-entry .reportblock > div {
    box-sizing: border-box;
    width: calc(100% - 170px);
    float: right;
}

.report-entry .reportblock > .report-image {
    float: left;
    clear: left;
    padding: 0;
    width: 150px;
    position: sticky;
    top: 0;
}

.report-entry .reportblock > .report-image .report-image-name {
    font-weight: bold;
    font-size: 1.25em;
    padding: 0.25em 0;
    word-wrap: break-word;
}

.report-entry .reportblock > .report-image img {
    width: 150px;
}

.report-entry .report-lo {
    width: 100%;
    padding: 0.5em;
    clear: right;
    position: relative;
    border-top: solid var(--colour-border-light) 1px;
}

.report-entry .report-lo:last-child {
    border-bottom: solid var(--colour-border-light) 1px;
}

.report-entry .report-lo:nth-child(2n) {
    background-color: var(--colour-table-row-highlight);
}

.report-entry .report-lo:nth-child(2n-1) {
    background-color: var(--colour-table-row-lowlight);
}

.report-entry .report-lo:focus-within {
    background-color: var(--colour-table-row-focus);
}

.report-entry .report-lo-number {
    clear: left;
    margin-right: 0.5em;
}

.report-entry .report-lo-number:after {
    content: ":";
}

.report-entry .report-lo-name {
    font-weight: bold;
}

.report-entry .report-lo-result {
    float: right;
    clear: right;
}

.report-entry .report-lo-leveldesc {
    text-align: right;
    box-sizing: border-box;
    padding-right: 0.5em;
}

.report-entry .report-lo-leveldesc:after {
    content: ":";
}

.report-entry input.report-lo-level {
    width: 50px;
    text-align: center;
}

.report-entry .report-lo-comment {
    display: inherit;
    box-sizing: border-box;
    width: 100%;
    clear: both;
}

.report-entry .report-lo-message {
    width: 100%;
    color: silver;
    font-size: 0.8em;
    font-style: italic;
    clear: both;
}

.report-entry .report-lo-error {
    width: 100%;
    clear: both;
}

.report-entry .report-ass {
    margin: 0.5em;
    width: calc(100% - 1em);
}

.report-entry .report-as {
    width: 100%;
    padding: 0.25em;
    clear: right;
    border-top: solid var(--colour-border-light) 1px;
}

.report-entry .report-as:last-child {
    border-bottom: solid var(--colour-border-light) 1px;
}

.report-entry .report-as:nth-child(2n) {
    background-color: var(--colour-table-row-highlight);
}

.report-entry .report-as:nth-child(2n-1) {
    background-color: var(--colour-table-row-lowlight);
}

.report-entry .report-as:focus-within {
    background-color: var(--colour-table-row-focus);
}

.report-entry .report-as-number {
    clear: left;
    margin-right: 0.5em;
}

.report-entry .report-as-number:after {
    content: ":";
}

.report-entry .report-as-name {
    font-weight: bold;
}

.report-entry .report-as-result {
    float: right;
    clear: right;
    text-align: center;
}

.report-entry .report-as-result:before {
    content: "Level";
    padding-right: 0.5em;
}

.report-entry .report-bis:before {
    content: "Behavioural Indicators:";
    font-weight: bold;
    padding-top: 1em;
    font-size: 1.1em;
    float: left;
    display: block;
}

.report-entry .report-bi {
    padding: 0.5em;
    margin-right: 0.5em;
    width: 100%;
    border-top: solid var(--colour-border-light) 1px;
}

.report-entry .report-bi:last-child {
    border-bottom: solid var(--colour-border-light) 1px;
}

.report-entry .report-bi:nth-child(2n) {
    background-color: var(--colour-table-row-highlight);
}

.report-entry .report-bi:nth-child(2n-1) {
    background-color: var(--colour-table-row-lowlight);
}

.report-entry .report-bi:focus-within {
    background-color: var(--colour-table-row-focus);
}

.report-entry .report-bi select {
    float: right;
}

.report-entry .report-bi-desc {
    font-weight: bold;
    float: left;
}

.report-entry .report-results {
    margin-top: 1em;
}

.report-entry .report-result {
    border: solid var(--colour-border-light) 1px;
    border-radius: var(--small-radius);
    padding: 0.5em;
    margin: 0.5em;
    width: 150px;
    height: 62px;
    text-align: center;
}

.report-entry .report-result:nth-child(2n) {
    background-color: var(--colour-table-row-highlight);
}

.report-entry .report-result:nth-child(2n-1) {
    background-color: var(--colour-table-row-lowlight);
}

.report-entry .report-result-name {
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.report-entry .report-result-value {
    display: inline-block;
    text-align: center;
}

.report-entry div.report-result-value {
    width: 100%;
    font-size: 1.25em;
}

.report-entry .report-comment {
    padding: 0.5em;
    position: relative;
}

.report-entry .report-comment textarea {
    width: calc(100% - 0.75em);
}

.report-entry .report-aids {
    width: 100%;
}

.report-entry .report-buttons {
    clear: right;
}

.report-entry .report-aid-outputs {
    clear: left;
    width: 100%;
}

.report-entry .report-status button, .report-entry .report-status input[type=button], .report-entry .report-status input[type=submit] {
    float: right;
}

.report-entry .report-status .status {
    float: right;
    padding-right: 20px;
    text-align: center;
}

.report-entry .report-status .status.saving {
    color: red;
    font-weight: bold;
    font-style: italic;
}

.report-entry .report-autocalc-hidden {
    display: none;
}

.report-entry .report-save-status-hidden {
    display: none;
}

.report-entry .report-generic-comment {
    width: 100%;
}

.report-entry .report-generic-comment-message {
    color: silver;
    font-style: italic;
}

@media screen and (max-width: calc(var(--small-width) - 1px)) {
    .report-entry .reportblock > div {
        width: 100%;
    }

    .report-entry .reportblock > .report-image {
        clear: both;
        width: 100%;
        text-align: center;
        position: relative;
        top: 0;
    }

    .report-entry .reportblock > .report-image img {
        width: 200px;
    }

    .report-entry .report-button {
        font-size: 1.5em;
        margin-right: 0.5em;
    }
}

/* Scoped styles for the Editor Wrapper */
.bi-editor-wrapper {
    margin-top: 10px;
    margin-bottom: 25px;
    /* Buttons */
}

.bi-editor-wrapper .bi-card {
    background: var(--colour-background-light);
    border: 1px solid var(--colour-border-light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bi-editor-wrapper .bi-header {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.bi-editor-wrapper .bi-name-input {
    flex-grow: 1;
    box-sizing: content-box;
    background: none no-repeat;
    border: none;
    padding: 2px;
    background-image: linear-gradient(to bottom, var(--colour-input), var(--colour-input)), linear-gradient(to bottom, var(--colour-input), var(--colour-input));
    background-size: 0 3px, 100% 1px;
    background-position: 0 100%, 0 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
}

.bi-editor-wrapper .bi-name-input:focus {
    background-size: 100% 3px, 100% 1px;
    outline: none;
    box-shadow: none;
}

.bi-editor-wrapper .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bi-editor-wrapper .option-chip {
    background: white;
    border: 1px solid var(--colour-border-light);
    border-radius: 20px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 90%;
}

.bi-editor-wrapper .option-chip input {
    border: none;
    outline: none;
    min-width: 50px;
    color: #334155;
    font-size: 90%;
}

.bi-editor-wrapper .bi-btn {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    padding: var(--small-radius);
    transition: opacity 0.2s;
}

.bi-editor-wrapper .bi-btn:hover {
    opacity: 0.8;
}

.bi-editor-wrapper .bi-btn-add {
    background-color: var(--colour-button);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: normal;
}

.bi-editor-wrapper .bi-btn-add:hover {
    background-color: var(--colour-button-hover);
}

.bi-editor-wrapper .bi-btn-del {
    background-color: transparent;
    color: darkred;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 5px;
}

.bi-editor-wrapper .bi-btn-del:hover {
    text-decoration: none;
}

.bi-editor-wrapper .bi-btn-remove-opt {
    color: #94a3b8;
    font-weight: bold;
    cursor: pointer;
    padding-left: 5px;
}

.bi-editor-wrapper .bi-btn-remove-opt:hover {
    color: darkred;
}

.bi-editor-wrapper .new-option-input {
    border: 1px dashed var(--colour-border-light);
    border-radius: 20px;
    padding: 4px 10px;
    background: transparent;
    font-size: 0.9rem;
    width: 100px;
}

.report-comments-app {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

.report-nav-index {
    position: sticky;
    top: var(--navbar-height, 60px);
    width: 250px;
    min-width: 250px;
    max-height: calc(100vh - var(--navbar-height, 60px));
    overflow-y: auto;
    background: var(--colour-background);
    border: 1px solid var(--colour-border-light);
    border-radius: var(--small-radius);
    padding: 0.5em;
    font-size: 0.85em;
}

.report-nav-index .report-nav-pupil {
    display: flex;
    align-items: center;
    gap: 0.25em;
    padding: 0.35em 0.5em;
    cursor: pointer;
    border-radius: var(--small-radius);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-nav-index .report-nav-pupil:hover {
    background: var(--colour-table-row-highlight);
}

.report-nav-index .report-nav-pupil.active {
    background: var(--colour-highlight);
    font-weight: bold;
}

.report-nav-index .report-nav-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-nav-index .report-nav-indicators {
    display: flex;
    gap: 0.2em;
    flex-shrink: 0;
}

.report-nav-index .report-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.report-nav-index .report-nav-dot.done {
    background-color: var(--colour-success, #28a745);
}

.report-nav-index .report-nav-dot.not-done {
    background-color: var(--colour-muted, #ccc);
}

.report-nav-index .report-nav-dot.pct-red {
    background-color: #dc3545;
}

.report-nav-index .report-nav-dot.pct-orange {
    background-color: #fd7e14;
}

.report-nav-index .report-nav-dot.pct-yellow {
    background-color: #ffc107;
}

.report-nav-index .report-nav-dot.pct-green {
    background-color: var(--colour-success, #28a745);
}

.report-nav-main {
    flex: 1;
    min-width: 0;
}

.report-nav-controls {
    display: flex;
    gap: 1em;
    align-items: center;
    margin-bottom: 1em;
    flex-wrap: wrap;
}

.report-nav-pagination {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.report-nav-pagination button, .report-nav-pagination input[type=button], .report-nav-pagination input[type=submit], .report-nav-pagination a {
    padding: 0.3em 0.8em;
}

.report-nav-pagination .current-page {
    font-weight: bold;
}

.report-nav-loading {
    text-align: center;
    padding: 2em;
    color: var(--colour-muted, #999);
    font-style: italic;
}

.report-nav-class-heading {
    font-weight: bold;
    padding: 0.4em 0.5em;
    background: var(--colour-table-row-heading);
    color: var(--colour-table-heading-text);
    border: 1pt solid var(--colour-table-row-heading);
    cursor: pointer;
    border-radius: var(--small-radius);
    margin-top: 0.5em;
    font-size: 0.9em;
}

.report-nav-class-heading:first-child {
    margin-top: 0;
}

.report-nav-class-heading.active {
    color: var(--colour-table-row-heading);
    background: var(--colour-table-heading-text);
    border: 1pt solid var(--colour-table-row-heading);
}

.report-nav-class-count {
    font-weight: normal;
    opacity: 0.7;
}

.report-nav-class-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}

.report-nav-class-current {
    text-align: center;
}

@media screen and (max-width: 799px) {
    .report-comments-app {
        flex-direction: column;
    }

    .report-nav-index {
        position: sticky;
        top: 0;
        width: 100%;
        min-width: 100%;
        max-height: 3em;
        overflow: hidden;
        border: none;
        border-bottom: 1px solid var(--colour-border-light);
        border-radius: var(--small-radius);
        z-index: 100;
        transition: max-height 0.3s ease;
    }

    .report-nav-index.expanded {
        max-height: 60vh;
        overflow-y: auto;
    }

    .report-nav-toggle {
        display: block;
        text-align: center;
        padding: 0.5em;
        cursor: pointer;
        font-weight: bold;
    }
}

.report-generic-comment {
    width: 100%;
}

@media screen and (min-width: 800px) {
    .report-nav-toggle {
        display: none;
    }
}

.rc-present {
    color: #1a7f37;
}

.rc-late {
    color: #b8860b;
}

.rc-absent {
    color: #c0392b;
}

.rc-nottaken {
    color: #888888;
}

.rollcall-legend {
    margin: 0.5em 0;
}

.rollcall-legend span {
    margin-left: 1em;
}

/*
 ********************************************************************* REPORTING
 */
table.markbook .subjectname {
    font-weight: bold;
}

table.markbook .finalresult {
    font-weight: bold;
    text-align: right;
}

table.markbook .assessment-expand {
    width: 20px;
    text-align: center;
}

table.markbook .assessment-description {
    display: inline-block;
    width: 80%;
}

table.markbook .assessment-marks {
    display: inline-block;
    text-align: right;
    width: 20%;
    color: #666666;
}

table.markbook .assessment-comment {
    color: #666666;
}

table.markbook .assessment-percent {
    width: 70px;
    text-align: right;
}

table.markbook .assessment-question {
    display: inline-block;
    width: 75%;
    padding-left: 5%;
}

table.markbook .question-result {
    display: inline-block;
    width: 20%;
    text-align: right;
}

.assessment-key {
    text-align: center;
    border: 1px solid #CCC;
    padding: 4px;
    font-size: 80%;
}

table.assessment-weightings td:first-child, table.assessment-weightings th:first-child, table.assessment-weightings-edit td:first-child, table.assessment-weightings-edit th:first-child {
    white-space: nowrap;
    width: 15%;
}

table.assessment-weightings td:nth-child(n+3), table.assessment-weightings th:nth-child(n+3), table.assessment-weightings-edit td:nth-child(n+3), table.assessment-weightings-edit th:nth-child(n+3) {
    width: 5%;
}

table.assessment-weightings td:last-child, table.assessment-weightings th:last-child, table.assessment-weightings-edit td:last-child, table.assessment-weightings-edit th:last-child {
    width: 20%;
}

table.assessment-weightings-edit td:last-child, table.assessment-weightings-edit th:last-child {
    width: 5%;
}

table.weightings-table td:first-child, table.weightings-table th:first-child {
    width: 70%;
}

table.weightings-table td:nth-child(2), table.weightings-table th:nth-child(2) {
    text-align: right;
    width: 15%;
}

table.weightings-table td:nth-child(2) input, table.weightings-table th:nth-child(2) input {
    width: 5em;
}

table.weightings-table td:last-child, table.weightings-table th:last-child {
    text-align: right;
    width: 15%;
}

/*
 *************************************************************** QR CODE SCANNER
 */
/*
ADAM: Academic Data Manager

Written by Philip Norton <philip@adam.co.za>
Copyright (c) 2005-present: ADAM EduTech

This software is not free. You may not distribute this source code
or make use of more copies of this software running simultaneously
than has been specifically agreed in your Service Level Agreement.
*/
/*
    Created on : 23 Aug 2018, 4:16:15 PM
    Author     : Philip
*/
#qrscanner video {
    display: inline-block;
    margin-bottom: 20px;
}

#qrscanner #loading, #qrscanner #iframe-placeholder {
    text-align: center;
    font-style: italic;
    padding-top: 2em;
    color: var(--colour-base);
}

#qrscanner > iframe {
    box-sizing: border-box;
    border: 10px white solid;
}

/*
 ********************************************************************** COMMENTS
 */
.hidepostcontent {
    display: none;
}

/*
 ***************************************************************** GENERAL RULES
 */
.hidden {
    display: none;
}

.fa {
    color: var(--colour-base);
}

.monospaced {
    font-family: monospace;
}

.centred, .align-centre {
    text-align: center;
}

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

.inline-block {
    display: inline-block;
}

.faint {
    color: grey;
}

.redacted {
    background-color: black;
    color: #505050;
    font-style: italic;
    font-weight: bold;
    padding: 0.1em 2em;
}

.small-font {
    font-size: 0.75em;
}

.italic {
    font-style: italic;
}

.nowrap {
    white-space: nowrap;
}

.keeptogether {
    page-break-inside: avoid;
}

.pagebreak {
    page-break-before: always;
}

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

.emwidth-1 {
    width: 1em;
}

.emwidth-2 {
    width: 2em;
}

.emwidth-3 {
    width: 3em;
}

.emwidth-4 {
    width: 4em;
}

.emwidth-5 {
    width: 5em;
}

.emwidth-6 {
    width: 6em;
}

.emwidth-7 {
    width: 7em;
}

.emwidth-8 {
    width: 8em;
}

.emwidth-9 {
    width: 9em;
}

.emwidth-10 {
    width: 10em;
}

.emwidth-11 {
    width: 11em;
}

.emwidth-12 {
    width: 12em;
}

.emwidth-13 {
    width: 13em;
}

.emwidth-14 {
    width: 14em;
}

.emwidth-15 {
    width: 15em;
}

.emwidth-16 {
    width: 16em;
}

.emwidth-17 {
    width: 17em;
}

.emwidth-18 {
    width: 18em;
}

.emwidth-19 {
    width: 19em;
}

.emwidth-20 {
    width: 20em;
}

.emwidth-21 {
    width: 21em;
}

.emwidth-22 {
    width: 22em;
}

.emwidth-23 {
    width: 23em;
}

.emwidth-24 {
    width: 24em;
}

.emwidth-25 {
    width: 25em;
}

.schoollog_event {
    border: 1px solid gray;
    padding: 4px;
    margin: 2px;
}

.inline {
    display: inline;
}

select.input {
    background-color: var(--colour-background);
    border: 1px solid var(--colour-base);
    border-radius: 3px;
    height: 30em;
}

select.input option {
    background-color: var(--colour-background);
}

select.input optgroup {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

select.input optgroup option {
    color: #000000;
}

/*
 ************************************************************** CLASS PROFILE
 */
.class-profile-details {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.class-profile-details .class-profile-table {
    flex: 1 1 auto;
}

.class-profile-details .class-profile-staff {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    align-items: flex-start;
    flex-wrap: wrap;
}

.class-profile-details .class-profile-staff-card {
    text-align: center;
    width: 200px;
    background-color: var(--colour-background-light);
    border: var(--colour-border-light) 1px solid;
    border-radius: var(--large-radius);
    padding: 1rem;
    box-shadow: var(--shadow);
}

/*
 *************************************************************** CLASS HISTORY
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
.class-history-gantt {
    font-size: 12px;
    margin: 0 0 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.class-history-gantt .chg-lane-label {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    margin: 0.3rem 0;
}

.class-history-gantt .chg-track {
    position: relative;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 3px;
}

.class-history-gantt .chg-track.chg-versions {
    margin-bottom: 0;
}

.class-history-gantt .chg-subrow {
    position: relative;
    height: 22px;
    margin-bottom: 3px;
}

.class-history-gantt .chg-subrow:last-child {
    margin-bottom: 0;
}

.class-history-gantt .chg-bar {
    position: absolute;
    top: 1px;
    height: 20px;
    line-height: 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    padding: 0 6px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
}

.class-history-gantt .chg-period {
    background: #aebfd4;
}

.class-history-gantt .chg-versions {
    height: 26px;
}

.class-history-gantt .chg-version {
    top: 3px;
    cursor: help;
}

.class-history-gantt .chg-more-periods {
    display: inline-block;
    margin-top: 2px;
    color: #7a5b00;
    background: #fff3cd;
    font-size: 10px;
    border-radius: 3px;
    padding: 1px 7px;
}

.class-history-gantt .chg-changept {
    position: absolute;
    top: 0;
    bottom: 0;
    border-left: 1px dashed #bbb;
}

.class-history-gantt .chg-endmark {
    position: absolute;
    bottom: 1.5rem;
    border-left: 2px dashed #c0392b;
    z-index: 5;
}

.class-history-gantt .chg-endmark.chg-endmark-pub {
    border-left-style: solid;
    border-left-width: 3px;
}

.class-history-gantt .chg-flag {
    position: absolute;
    left: 2px;
    background: #c0392b;
    color: #fff;
    font-size: 9.5px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.class-history-gantt .chg-flag-s0 {
    top: -1.3rem;
}

.class-history-gantt .chg-flag-s1 {
    top: -2.6rem;
}

.class-history-gantt .chg-flag-s2 {
    top: -3.9rem;
}

.class-history-gantt .chg-flag-s3 {
    top: -5.2rem;
}

.class-history-gantt .chg-flag-more {
    background: #7a3a30;
    cursor: help;
}

.class-history-gantt .chg-uses {
    position: absolute;
    left: 2px;
    bottom: -1.05rem;
    color: #c0392b;
    font-size: 9.5px;
    font-weight: 700;
    white-space: nowrap;
}

.class-history-gantt .chg-endmark-flip .chg-flag {
    left: auto;
    right: 2px;
}

.class-history-gantt .chg-endmark-flip .chg-uses {
    left: auto;
    right: 2px;
}

.chg-vbadge {
    display: inline-block;
    min-width: 1.5rem;
    padding: 1px 8px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
}

/*
 ***************************************************************** NAME CARDS
 */
.name-card {
    display: flex;
    align-items: center;
    align-content: stretch;
    border-radius: var(--large-radius);
    background-color: var(--colour-background-light);
    padding: 8px;
    margin: 16px 8px;
    border: 1px solid var(--colour-border-light);
    box-shadow: var(--shadow);
    z-index: 5;
    position: relative;
}

.name-card .photo img {
    flex-grow: 0;
    border-radius: 0.5em;
    vertical-align: middle;
    margin: 0.25em;
    max-height: 40px;
    max-width: 40px;
}

.name-card .name {
    flex-grow: 1;
    padding-left: 1em;
    font-weight: bold;
    font-size: 1.1em;
}

.name-card .tag-cloud {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.name-card .link {
    flex-grow: 0;
    font-size: 0.9em;
    padding-left: 1em;
}

/*
 * This little construction allows for successively nested .audit classes to be coloured different colours.
 */
.audit {
    color: red;
}

.audit .audit {
    color: darkgoldenrod;
}

.audit .audit .audit {
    color: green;
}

.audit .audit .audit .audit {
    color: blue;
}

.audit .audit .audit .audit .audit {
    color: purple;
}

.audit .audit .audit .audit .audit .audit {
    color: gray;
}

table.lotable th:nth-child(1), table.lotable th:nth-child(2), table.lotable th:nth-child(5) {
    width: 10%;
}

table.lotable th:nth-child(3), table.lotable th:nth-child(4) {
    width: 35%;
}

hr {
    border-style: solid;
    border-top-color: var(--colour-table-row-lowlight);
    border-left-color: var(--colour-table-row-lowlight);
    border-right-color: var(--colour-table-row-lowlight);
    border-bottom-color: var(--colour-table-row-lowlight);
}

audio {
    max-height: 30px;
    width: 100%;
    max-width: 300px;
}

/*
 ***************************************************************** PUPIL SEARCH CARDS
 */
.token-input-dropdown li.pupil-search .thumbnail {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    text-align: center;
}

.token-input-dropdown li.pupil-search .thumbnail img {
    display: inline-block;
    max-width: 2.5em;
    max-height: 2.5em;
}

.token-input-dropdown li.pupil-search .card {
    display: inline-block;
    padding-left: 10px;
    vertical-align: top;
    width: calc(100% - 3em);
}

.token-input-dropdown li.pupil-search .class {
    font-size: 75%;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.birthday-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1em;
}

.birthday-list .profile-card {
    flex: 1;
    flex-basis: 150px;
    text-align: center;
    vertical-align: top;
}

.birthday-list .profile-card img {
    border-radius: 1em;
}

.birthday-list .profile-card .name {
    font-weight: bold;
}

/*
 *********************************************************************** CUSTOM TAB SET
 */
div.tabset {
    display: flex;
    flex-wrap: wrap;
}

div.tabset > input {
    display: none;
}

div.tabset > input:checked + label {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

div.tabset > input:first-child + label {
    border-top-left-radius: var(--small-radius);
}

div.tabset > input:last-of-type + label {
    border-right-width: 1px;
    border-top-right-radius: var(--small-radius);
}

div.tabset > input:checked + label + section {
    display: block;
}

div.tabset > label {
    border: 1px solid var(--colour-base);
    padding: 0.5em 0.75em;
    background: var(--colour-light);
    cursor: pointer;
    margin-top: 0;
    margin-right: -1px;
    margin-bottom: -1px;
    transition: all 0.1s;
    user-select: none;
}

div.tabset > label:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

div.tabset > label:active {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

div.tabset > section {
    order: 999;
    width: 100%;
    display: none;
    border: 1px solid var(--colour-base);
    border-radius: 0 var(--small-radius) var(--small-radius) var(--small-radius);
    padding: 1em 1em;
}

div.tabset > section > h2 {
    display: none;
    margin-top: 0;
}

div.tabset > section .navigation {
    margin-top: 1em;
    display: flex;
    justify-content: center;
}

/*
 ***************************************************************** CUSTOM ACCORDION SET
 */
div.accset {
    display: flex;
    flex-wrap: wrap;
}

div.accset > input {
    display: none;
}

div.accset > input + label > .hide {
    display: none;
}

div.accset > input + label > .show {
    display: inline-block;
}

div.accset > input:checked + label {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

div.accset > input:checked + label > .hide {
    display: inline-block;
}

div.accset > input:checked + label > .show {
    display: none;
}

div.accset > input:checked + label + section {
    max-height: fit-content;
    padding: 1em;
    border-bottom: 1px solid var(--colour-base);
    border-left: 1px solid var(--colour-base);
    border-right: 1px solid var(--colour-base);
}

div.accset > input:first-child + label {
    border-top-left-radius: var(--small-radius);
    border-top-right-radius: var(--small-radius);
}

div.accset > input:last-of-type:not(:checked) + label {
    border-bottom-left-radius: var(--small-radius);
    border-bottom-right-radius: var(--small-radius);
}

div.accset > label {
    border: 1px solid var(--colour-base);
    padding: 0.5em 0.75em;
    background: var(--colour-light);
    cursor: pointer;
    transition: all 0.1s;
    margin-bottom: -1px;
    user-select: none;
    width: 100%;
}

div.accset > label:hover {
    background-color: var(--colour-base-contrast);
    color: var(--colour-base);
}

div.accset > label:active {
    background-color: var(--colour-base);
    color: var(--colour-base-contrast);
}

div.accset > section {
    width: 100%;
    max-height: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    padding: 0 1em;
    margin-bottom: -1px;
    transition: padding 0.2s ease-in-out;
    overflow: hidden;
}

div.accset > section:last-of-type {
    border-radius: 0 0 var(--small-radius) var(--small-radius);
}

div.accset > section > h2 {
    display: none;
    margin-top: 0;
    height: 0;
}

div.accset > section .navigation {
    margin-top: 1em;
    display: flex;
    justify-content: center;
}

/*
 ********************************************************************** SIGN UP MODULE
 */
#tblapptmt tr.weekend:nth-child(2n) {
    background-color: hsl(from var(--colour-table-row-highlight) h s calc(l * 0.9));
}

#tblapptmt tr.weekend:nth-child(2n-1) {
    background-color: hsl(from var(--colour-table-row-lowlight) h s calc(l * 0.9));
}

/*
 ******************************************************************** MESSAGING MODULE
 */
.mergecodes td, .mergecodes th {
    width: 33%;
}

.mergecodes .mergecode {
    font-family: monospace;
    min-width: 3em;
    display: inline-block;
    cursor: pointer;
}

dialog.test-send-dialog {
    border: 1px solid var(--colour-border-light);
    border-radius: var(--large-radius);
    padding: 1.5em 2em;
    background-color: var(--colour-background-light);
    box-shadow: 0 0.5em 1.5em var(--colour-shadow);
    width: min(90%, 400px);
    color: var(--colour-text);
    text-align: center;
}

dialog.test-send-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

dialog.test-send-dialog[open] {
    animation: dialog-fade-in 0.15s ease-out;
}

dialog.test-send-dialog .test-send-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
}

dialog.test-send-dialog .test-send-spinner {
    font-size: 2.5em;
    color: var(--colour-link);
}

dialog.test-send-dialog .test-send-actions {
    margin-top: 1.5em;
    display: none;
}

dialog.test-send-dialog.complete .test-send-spinner {
    display: none;
}

dialog.test-send-dialog.complete .test-send-actions {
    display: block;
}

/*
 ********************************************************************************** AI
 */
.ai_summary {
    border: 1pt solid var(--colour-base);
    border-radius: var(--large-radius);
    padding: 1em;
    background-color: var(--colour-light);
    margin: 1em 0;
}

.ai_summary h1, .ai_summary .h2-heading, .ai_summary h3, .ai_summary .h3-heading, .ai_summary h2 {
    margin-top: 0;
}

.ai_summary p {
    margin-bottom: 0;
}

.ai_summary .ai_disclaimer {
    font-size: small;
    font-style: italic;
    color: var(--colour-dark);
    opacity: 0.3;
}

/*
 ******************************************************************************* MODAL
 */
/* The dark background overlay */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex; /* Use flexbox for easy centering */
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out;
}

#modal-overlay.hidden {
    opacity: 0;
    display: none;
}

/* The dialog box itself */
#modal-dialog {
    background-color: white;
    padding: 1em;
    border-radius: var(--large-radius);
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.5);
    width: 80%;
    height: 80%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

#modal-content {
    flex-grow: 1; /* Makes content area fill available space */
    overflow-y: auto; /* Add scrollbar if content overflows */
    border: 1px solid #ccc;
    padding: 1em;
    background-color: #f9f9f9;
}

#modal-content pre {
    margin: 0;
    white-space: pre-wrap; /* Allows long lines to wrap */
    word-wrap: break-word;
}

.modal-buttons {
    margin-top: 1.5em;
    text-align: right;
}

#modal-ok-btn {
    padding: 0.5em 1em;
    cursor: pointer;
}

/* Native <dialog> popups used by InlineTable and TimeframesController */
dialog.inline-table-dialog {
    border: 1px solid var(--colour-border-light);
    border-radius: var(--large-radius);
    padding: 1.5em 2em;
    background-color: var(--colour-background-light);
    box-shadow: 0 0.5em 1.5em var(--colour-shadow);
    width: min(80%, 1200px);
    max-height: 85vh;
    overflow-y: auto;
    color: var(--colour-text);
}

dialog.inline-table-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

dialog.inline-table-dialog[open] {
    animation: dialog-fade-in 0.15s ease-out;
}

@keyframes dialog-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*
 **************************************************************************** PROGRESS
 */
.progress {
    width: calc(100% - 4em);
    border: 2px solid var(--colour-base);
    background-color: var(--colour-base-contrast);
    margin: 2em 2em 1em;
    border-radius: var(--small-radius);
}

.progress .bar {
    background-color: var(--colour-base);
    height: 2em;
    transition: width 3.2s linear;
}

.progress-percent {
    text-align: center;
    margin-bottom: 2em;
}

/*
 ****************************************************************************** SEARCH
 */
div#breadcrumb #search-box {
    width: 10em;
    anchor-name: --anchor-search-box;
}

div#breadcrumb #search-results-container {
    position: relative;
    display: none;
}

div#breadcrumb #search-results {
    position: absolute;
    position-anchor: --anchor-search-box;
    top: calc(anchor(bottom) + 0.5em);
    left: auto;
    right: anchor(right);
    position-try-fallbacks: --search-popover-fallback;
    text-align: left;
    width: clamp(30em, 50%, 40em);
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--colour-border-dark);
    border-radius: var(--small-radius);
    box-shadow: 0.25em 0.25em 1em 0 var(--colour-shadow);
}

div#breadcrumb #search-results ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

div#breadcrumb #search-results ul li {
    border-bottom: 1px solid var(--colour-border-light);
    padding: 0.5em;
}

div#breadcrumb #search-results ul li a {
    display: flex;
    align-items: center;
}

div#breadcrumb #search-results ul li a div {
    flex-grow: 1;
}

div#breadcrumb #search-results ul li a div:last-child {
    border-left: 1px solid var(--colour-border-light);
    padding-left: 0.5em;
    vertical-align: middle;
    width: fit-content;
    flex-grow: 0;
    opacity: 0.5;
}

div#breadcrumb #search-results ul li:hover {
    background-color: var(--colour-table-row-highlight);
}

div#breadcrumb #search-results ul li:last-child {
    border-bottom: none;
}

@position-try --search-popover-fallback {
    left: anchor(left);
    right: auto;
}
/*
 ****************************************************************************** DOCREP
 */
table.docrep td, table.docrep th {
    vertical-align: middle;
}

table.docrep td:first-child, table.docrep th:first-child {
    text-align: center;
}

/* Application document upload step (/apply/documents) */
.appdoc-progress {
    background: #f6f8ff;
    border: 1px solid #e2e8ff;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0 18px;
}

.appdoc-group {
    background: var(--colour-background-light);
    border: 1px solid var(--colour-border-light);
    border-radius: var(--large-radius);
    box-shadow: var(--shadow);
    padding: 14px 16px;
    margin: 0 0 16px;
}

.appdoc-group-title {
    margin: 0 0 4px;
}

.appdoc-group-desc {
    font-size: 13px;
    color: #888;
    margin: 0 0 8px;
}

.appdoc-slot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.appdoc-slot:first-of-type {
    border-top: none;
}

.appdoc-slot-meta {
    flex: 1 1 auto;
}

.appdoc-slot-name {
    font-weight: 600;
}

.appdoc-help {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.appdoc-slot-status {
    flex: 0 0 auto;
    text-align: right;
}

.appdoc-badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-left: 6px;
    vertical-align: middle;
}

.appdoc-badge--required {
    color: var(--colour-table-required);
}

.appdoc-pill {
    display: inline-block;
    background: #e6f7ec;
    color: #1a7f3c;
    padding: 3px 9px;
    border-radius: 10px;
    font-size: 13px;
}

.appdoc-tick {
    font-weight: 700;
    margin-right: 4px;
}

/* .appdoc-remove is an ActionLink (a.action); the menu-link styling handles it. */
.appdoc-file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.appdoc-choose {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--colour-button);
    background: var(--colour-button-secondary);
    color: var(--colour-button-secondary-text);
    font-weight: bold;
    border-radius: var(--small-radius);
    padding: max(0.5em, var(--small-radius) / 3) 12px;
    cursor: pointer;
    margin: 0;
}

.appdoc-choose:hover {
    background: var(--colour-button-secondary-hover);
    text-decoration: underline;
}

.appdoc-slot--uploading .appdoc-slot-status {
    opacity: 0.5;
    pointer-events: none;
}

.appdoc-slot--uploading .appdoc-slot-status::after {
    content: " uploading…";
    font-size: 12px;
    color: #888;
}

/* Online application progress breadcrumb (Your Details / Documents / Review & Submit) */
.app-breadcrumb {
    margin: 0 0 18px;
}

.app-breadcrumb__list {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--colour-border-light);
    overflow-x: auto;
}

.app-breadcrumb__step {
    flex: 1 1 0;
    text-align: center;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

/* Every step is a span or an anchor (no buttons), so they all render the same
   way and share one hover treatment. */
.app-breadcrumb__step .app-breadcrumb__label {
    display: block;
    width: 100%;
    margin: 0;
    padding: 13px 8px;
    font: inherit;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a.app-breadcrumb__label {
    cursor: pointer;
}

a.app-breadcrumb__label:hover {
    background: var(--colour-background-light);
    text-decoration: underline;
}

/* Chevron separators between steps indicate the flow direction. */
.app-breadcrumb__sep {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 4px;
    font-size: 11px;
    color: var(--colour-text);
}

/* The current step is highlighted; completed and reachable steps share the
   ordinary link colour so completion is signalled by the tick, not a colour. */
.app-breadcrumb__step--current {
    color: var(--colour-link);
    border-bottom-color: var(--colour-link);
    font-weight: 600;
}

.app-breadcrumb__step--done,
.app-breadcrumb__step--ahead {
    color: var(--colour-link);
}

.app-breadcrumb__step--upcoming {
    color: var(--colour-table-help);
}

.app-breadcrumb__step--upcoming .app-breadcrumb__label {
    cursor: default;
}

/* Completion tick on the right of a done step's label. */
.app-breadcrumb__tick {
    margin-left: 6px;
    color: var(--colour-success);
}

/*
 ****************************************************************************** ACTION TILES
 */
/*!
 * ADAM: Academic Data Manager
 *
 * Written by Philip Norton <philip@adam.co.za>
 * Copyright © 2005-2026: ADAM EduTech. All rights reserved.
 */
/*
 * Action tiles — the clickable "what next?" cards rendered after an action
 * succeeds (see ClassEditorController::renderActionCards). Built on top of the
 * shared .grid / .section card primitives; this module adds the tile sizing,
 * the faded corner icon, the description text and the hover affordance.
 */
.grid .action-tile {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 12em;
    text-decoration: none;
    transition: background-color 0.2s;
}

.grid .action-tile:hover {
    background-color: var(--colour-light);
}

.grid .action-tile .icon {
    position: absolute;
    bottom: 0;
    right: 0.5rem;
    font-size: 6em;
    color: var(--colour-base);
    opacity: 0.2;
}

.grid .action-tile .action-tile-description {
    color: var(--colour-dark);
    padding-top: 0.5em;
}

.photo-upload {
    display: grid;
    gap: 20px;
}

.photo-upload img {
    max-height: 160px;
    max-width: 160px;
}

/*# sourceMappingURL=default.css.map */
