/* FONTS */

@font-face {
    font-family: Inter;
    src: url("/static/portal/fonts/Inter-Regular.dc1311138942.woff2") format('woff2'),
        url("/static/portal/fonts/Inter-Regular.3ac83020fe53.woff") format('woff');

    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url("/static/portal/fonts/Inter-Medium.75db5319e7e8.woff2") format('woff2'),
        url("/static/portal/fonts/Inter-Medium.c0638bea87a0.woff") format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url("/static/portal/fonts/Inter-SemiBold.007ad31a53f4.woff2") format('woff2'),
        url("/static/portal/fonts/Inter-SemiBold.66a68ffab2bf.woff") format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url("/static/portal/fonts/Inter-Bold.444a7284663a.woff2") format('woff2'),
        url("/static/portal/fonts/Inter-Bold.99a0d9a7e4c9.woff") format('woff');
    font-weight: 700;
    font-style: normal;
}

/* VARIABLE DEFINITIONS */

html,
:root {
    --container-padding: 10px;
    --component-margin: 5px 0;
    --component-padding: 10px 10px;
    --component-radius: 4px;
    --component-outline: 2px solid var(--body-fg);
    --component-shadow: 0px 4px 25px 0px #c3c4c566;
    --section-header-margin-top: 10px;

    --checkbox-width: 40px;

    --double-column-field-width: 420px;

    --toggle-checkbox-label-width: 180px;
    --toggle-checkbox-left-margin: 40px;
    --toggle-checkbox-right-margin: 10px;
    --toggle-checkbox-total-width: calc(var(--checkbox-width) + var(--toggle-checkbox-label-width) + var(--toggle-checkbox-left-margin) + var(--toggle-checkbox-right-margin));
}

html[data-theme="light"],
:root {
    --primary: #0068f4;
    --secondary: #005bd2;
    --accent: #71b4ff;

    --body-fg: #212121;

    --header-color: #ffffff;
    --header-bg: #0a2136;
    --header-link-color: var(--primary);

    --breadcrumbs-fg: #757575;
    --breadcrumbs-link-fg: var(--breadcrumbs-fg);
    --breadcrumbs-bg: var(--body-bg);

    --page-header-button-border: #577490;

    --link-fg: #323232;
    --link-hover-color: #0068f4;

    --inline-link-fg: #1d70b8;
    --inline-link-thickness: max(1px, .0625rem);
    --inline-link-offset: .1578em;
    --inline-link-hover-fg: #003078;
    --inline-link-hover-thickness: max(3px, .1875rem, .12em);

    --inactive-fg: #6b6b6b;
    --disabled-fg: #767676;

    --error-fg: #dc2626;

    --selected-row: #eff6ff;

    --button-bg: var(--primary);
    --close-button-bg: #fff;
    --close-button-hover-bg: #fff;

    --object-tools-bg: var(--button-bg);
    --object-tools-hover-bg: var(--default-button-hover-bg);

    --font-family-primary: Inter;

    --sortable-table-button-hover-fg: #437c98;

    /* PEXIP COLOURS */

    --input-fg: #323232;
    --input-bg: #fafafa;
    --input-border: #878787;
    --input-hover-fg: var(--input-fg);
    --input-hover-bg: #f0f0f0;
    --input-hover-border: var(--input-fg);
    --input-focus-fg: var(--input-fg);
    --input-focus-bg: var(--input-hover-bg);
    --input-focus-border: #0068f4;
    --input-active-fg: var(--input-fg);
    --input-active-bg: var(--input-hover-bg);
    --input-active-border: #c3c4c5;

    --placeholder-fg: #707070;

    --button-primary-fg: #f7f7f7;
    --button-primary-bg: #0068f4;
    --button-primary-hover-fg: #ffffff;
    --button-primary-hover-bg: #0156c9;

    --button-secondary-fg: #323232;
    --button-secondary-bg: #ffffff;
    --button-secondary-border: #323232;
    --button-secondary-hover-fg: #323232;
    --button-secondary-hover-bg: #e6e6e6;
    --button-secondary-hover-border: #323232;

    --button-tertiary-fg: #323232;
    --button-tertiary-bg: #ffffff;
    --button-tertiary-border: #949494;
    --button-tertiary-hover-fg: #ffffff;
    --button-tertiary-hover-bg: #0068f4;
    --button-tertiary-hover-border: var(--button-tertiary-hover-bg);

    --flex-gap: 68px;
}

body {
    font-variant-ligatures: no-contextual;
    overflow-x: hidden;
}

/* ANIMATION */

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slowFadeIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* LINKS */

a:link,
a:visited {
    color: var(--body-fg);
    font-weight: 400;
    line-height: 140%;
}

a:hover,
a:focus,
a:active {
    text-decoration: underline;
}

.disabled-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none !important;
}

.disabled-link:hover,
.disabled-link:focus {
    text-decoration: none !important;
}

/* GLOBAL DEFAULTS */

h1 {
    font-weight: 700;
    font-size: xx-large;
    color: var(--body-fg);
}

h2 {
    font-size: large;
}

ul > li {
    list-style-type: none;
}

fieldset {
    border-top: 0;
    border-bottom: 1px solid var(--hairline-color);
}

.visually-hidden,
.visually-hidden-legend > legend,
.visually-hidden-description > .description {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    color: var(--body-fg);
    background-color: var(--body-bg);
}

/* TEXT STYLES & MODIFIERS */

.help,
p.help,
form p.help,
div.help,
form div.help,
div.help li {
    font-weight: lighter;
}


.form-row div.help {
    padding-top: 5px;
}

/* TABLES */

thead th,
tfoot td {
    color: var(--body-fg);
    font-size: 0.8125rem;
    border-top: 0;
}

tr:nth-child(even),
tr:nth-child(even) .errorlist,
tr:nth-child(odd)+.row-form-errors,
tr:nth-child(odd)+.row-form-errors .errorlist {
    background: var(--body-bg);
}

tbody > tr:hover {
    background: var(--darkened-bg);
}

.table-editable tbody > tr:hover {
    /* don't change background color when there are inputs in the table, so we could meet the minimal contrast requirements */
    background: unset;
}

@media (max-width: 767px) {
    .table-editable tbody .vTextField {
        width: 100%;
    }
}



tbody a:link,
tbody a:visited {
    text-decoration: underline;
    text-decoration-thickness: var(--inline-link-thickness);
    text-underline-offset: var(--inline-link-offset);
}

tbody a:hover {
    text-decoration-thickness: var(--inline-link-hover-thickness);
}

table thead th .raw-text {
    margin: 0 2px;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}


/* SORTABLE TABLES */

.results {
    min-height: 2rem;
    /* to fit the sortable columns focus indicator (outline) */
    padding-top: 2px;
}

thead th,
thead th.sorted {
    background: var(--body-bg);
}

thead th.sorted .text {
    padding-right: 0;
    display: inline-block;
}

table thead th.sorted a.sortremove {
    visibility: visible; /* Always visible, not only on hover */
}

table thead th.sorted {
    position: relative;
}

table thead th.sorted .sortoptions {
    padding: 0;
    position: absolute;
    right: 0;
    top: 6px;
}

table thead th.sorted .sortoptions a {
    width: 24px;
    height: 24px;
    background-size: 24px auto;
}

table thead th.sorted .sortoptions a.ascending {
    background-position: 0 -50px;
}

table thead th.sorted .sortoptions a.ascending:focus,
table thead th.sorted .sortoptions a.ascending:hover {
    background-position: 0 -74px;
}

table thead th.sorted .sortoptions a.descending {
    background-position: 0 -98px;
}

table thead th.sorted .sortoptions a.descending:focus,
table thead th.sorted .sortoptions a.descending:hover {
    background-position: 0 -122px;
}

table thead th.sorted .sortoptions a.sortremove {
    background-size: 20px auto;
    background-position: 0 2px;
}

table thead th.sorted .sortoptions a.sortremove:focus,
table thead th.sorted .sortoptions a.sortremove:hover {
    background-position: 0 -18px;
}

table thead th.sorted .sortoptions a.sortremove:after {
    color: var(--body-fg);
    top: 2px;
    left: 5px;
    font-size: 1.525rem;
}

table thead th.sorted .sortoptions a.sortremove:hover:after,
table thead th.sorted .sortoptions a.sortremove:focus:after  {
    color: var(--sortable-table-button-hover-fg);
}

table thead th.sorted .sortpriority {
    font-size: 1.1em;
    vertical-align: 7px;
    margin-left: 3px;
    margin-right: 3px;
}

table thead th .text span {
    padding: 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

table thead th .text a:link,
table thead th .text a:visited {
    margin: 0 2px;
    padding: 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--body-fg);
}

table thead th.sorted .text a:link,
table thead th.sorted .text a:visited {
    margin-right: 80px;
}

table .action-checkbox {
    vertical-align: middle;
}

.results tbody td img {
    width: 16px;
}

@media (max-width: 1600px) {
    table thead th.sorted .sortoptions {
        position: unset;
        padding: 5px 5px 0 0;
    }

    table thead th.sorted .text a:link,
    table thead th.sorted .text a:visited {
        margin-right: unset;
    }
}

optgroup::before {
    font-style: normal;
}

/* FORM DEFAULTS */

input,
textarea,
select,
.form-row p,
form .button {
    accent-color: var(--secondary);
}

input::placeholder {
    color: var(--placeholder-fg);
}

input:focus::placeholder {
    color: var(--input-focus-fg);
}

div.help {
    padding: 2px 3px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
input[type=tel],
input[type=date],
input[type=time],
textarea,
select,
.vTextField {
    padding: 8px 8px;
    color: var(--input-fg);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    outline: 0;
    flex-basis: calc(100% - var(--flex-gap) - 24px);
    margin-bottom: 0;
}

input[type=text]:hover,
input[type=password]:hover,
input[type=email]:hover,
input[type=url]:hover,
input[type=number]:hover,
input[type=tel]:hover,
input[type=date]:hover,
input[type=time]:hover,
textarea:hover,
select:hover,
.vTextField:hover {
    color: var(--input-hover-fg);
    background-color: var(--input-hover-bg);
    border: 1px solid var(--input-hover-border);
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=time]:focus,
textarea:focus,
select:focus,
.vTextField:focus {
    color: var(--input-focus-fg);
    background-color: var(--input-focus-bg);
    outline: 2px solid var(--input-focus-border);
}

input[type=text]:active,
input[type=password]:active,
input[type=email]:active,
input[type=url]:active,
input[type=number]:active,
input[type=tel]:active,
textarea:active,
select:active,
.vTextField:active {
    color: var(--input-active-fg);
    background-color: var(--input-active-bg);
    border: 1px solid var(--input-active-border);
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
input[type=tel],
input[type=date],
input[type=time],
select {
    box-sizing: border-box;
    border-radius: var(--component-radius);
    height: 40px;
}

.errors input:not(:focus),
.errors select:not(:focus),
.errors textarea:not(:focus),
td ul.errorlist + input:not(:focus),
td ul.errorlist + select:not(:focus),
td ul.errorlist + textarea:not(:focus) {
    border-color: var(--body-bg);
    outline: 1px solid var(--error-fg);
}

/* FORM BUTTONS */

input[type=submit]:active,
input[type=submit]:focus,
input[type=submit]:hover {
    background: none;
}

/* DETAILS / SUMMARY */
details > summary:hover {
    text-decoration: underline;
}

details > div {
    margin-top: 10px;
}

/* DROPDOWN */

.dropdown-content {
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--darkened-bg);
    border-radius: var(--component-radius);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content.show {
    display: flex;

    animation: fadeIn 350ms;
}

/* DROPDOWN */
.tooltip {
    z-index: 2000;
    color: var(--body-fg);
    background-color: var(--darkened-bg);
    border-radius: var(--component-radius);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: var(--component-padding);
    max-width: 300px;

    font-weight: normal;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    
    animation: slowFadeIn 600ms;
}

/* MODULES */

.module {
    padding-bottom: 20px;
    margin-bottom: 10px;
    background: none;
}

.module h2,
.module caption,
.inline-group h2 {
    padding: 0;
    font-weight: 600;
    font-size: medium;
    background: var(--body-bg);
    color: var(--body-fg);
}

.module caption,
.inline-group h2 {
    font-size: medium;
    letter-spacing: 0;
    text-transform: none;
}

.module.aligned {
    border-bottom: 1px solid var(--hairline-color);
}

.module.aligned.tabcontent,
.inline-group.tabcontent {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.module.aligned.tabcontent.last,
.inline-group.tabcontent:has(fieldset.last) {
    border-bottom: none;
    margin-bottom: 20px;
}

/* MESSAGES & ERRORS */

.errornote {
    font-weight: 400;
    border: none;
    border-radius: 18px;
}

/* OBJECT TOOLS */

.object-tools {
    margin-top: 0;
    position: absolute;
    top: 20px;
    right: 40px;
    max-width: 500px;
    display: flex;
    flex-direction: row;
}

.object-tools.object-tools-dashboard {
    right: 24px;
}

.object-tools li {
    margin-bottom: 40px;
}

.object-tools li {
    margin-left: 10px;
}

.object-tools a:link,
.object-tools a:visited {
    padding: 12px 12px;
    border: 1px solid var(--object-tools-bg);
    font-weight: 600 !important;
    text-transform: none;
    border-radius: var(--component-radius);
    font-size: 0.8125rem;
}

.object-tools a:hover,
.object-tools a:focus,
.object-tools a:active {
    border: 1px solid var(--object-tools-hover-bg);
    text-decoration: none;
}

.object-tools a:focus {
    outline: 2px solid var(--object-tools-hover-bg);
    outline-offset: 1px;
}

.object-tools a.addlink {
    background-image: none;
}

/* PAGE STRUCTURE */

#content {
    /* to allow absolute positioning of .object-tools */
    position: relative;
    padding: 20px 24px;
}

#footer {
    padding: 0px;
}

/* HEADER */

#header {
    padding: 0px;
    padding-right: 40px;
    border-bottom: 1px solid var(--hairline-color);
}

#header a:link,
#header a:visited,
#logout-form button {
    color: var(--accent);
}

#site-name {
    padding: 20px 40px;
}

#site-logo {
    display: flex;
}

#user-tools {
    font-size: 0.875rem;
    text-transform: none;
}

#user-tools a,
#logout-form button
{
    font-weight: 600;
    font-size: 0.75rem;
    border-bottom: none;
    margin: 0 1rem;
    text-transform: none;
}

#user-tools a:focus,
#user-tools a:hover,
#user-tools a:active,
#logout-form button:focus,
#logout-form button:hover,
#logout-form button:active {
    text-decoration: underline;
}

#language-form {
    display: inline-block;
}

#language-select {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    color: var(--accent);
}

#language-select option {
    color: var(--accent);
    background-color: var(--header-bg);
}

.custom-select {
    position: relative;
    color: var(--accent);
}

.select-button {
    color: var(--accent);
    cursor: pointer;
    border: none;
    margin: 0 1rem;
    background: none;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
}

.selected-value {
    font-weight: 600;
    font-size: 0.75rem;
    text-align: left;
    font-family: var(--font-family-primary);
    letter-spacing: 0.5px;
}

.select-button:hover {
    text-decoration: underline;
}

.arrow{
    position:relative;
    display:block;
    height:1em;/*height should be double border*/
    top: 0.3em;/*half of height*/
}
.arrow:before,
.arrow:after{
    position:absolute;
    display:block;
    content:"";
    border:0.5em solid transparent;/*adjust size*/
}
/*Change four 'top' values below to rotate (top/right/bottom/left)*/
.arrow:before{
    top:0;
    border-top-color: var(--accent) /*Chevron Color*/
}
.arrow:after{
    top:-3px;/*adjust thickness*/
    border-top-color:var(--header-bg);/*Match background colour*/
}

#deleted-objects {
    word-wrap: break-word;
}

/* AUTOCOMPLETE */

.select2-container {
    flex: 1;
    width: unset !important;
}

.select2-selection {
    min-height: 1.4rem !important;
}

.select2-selection__arrow {
    min-height: 40px !important;
}

.select2-selection__rendered {
    line-height: unset !important;
    margin-top: 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--button-bg) !important;
}

/* AUTOCOMPLETE IN OBJECT-TOOLS */
.object-tools .select2-container {
    max-width: 20rem !important;
}

.object-tools .select2-selection {
    height: auto !important;
    border: 1px solid var(--object-tools-bg) !important;
    background-color: var(--object-tools-bg) !important;
    color: var(--object-tools-fg) !important;
    font-weight: 600 !important;
}

.object-tools .select2-selection:hover {
    border: 1px solid var(--object-tools-hover-bg) !important;
    background-color: var(--object-tools-hover-bg) !important;
}

.object-tools .select2-selection:focus {
    outline: 2px solid var(--object-tools-hover-bg) !important;
    outline-offset: 1px !important;
}

.object-tools .select2-selection__rendered {
    padding: 12px;
    margin-top: 0;
    line-height: 140% !important;
}

.object-tools .select2-selection__placeholder,
.object-tools .select2-selection__rendered {
    color: var(--object-tools-fg) !important;
}

.object-tools .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--object-tools-fg) transparent transparent transparent !important;
}

.object-tools .select2-selection__arrow {
    padding-right: 12px;
}

/* SIGNED OUT SIGN IN BUTTON */

a.signinlink:link,
a.signinlink:visited {
    padding: 12px 12px;
    color: var(--primary);
    border-radius: var(--component-radius);
}

a.signinlink:focus,
a.signinlink:hover {
    background: var(--button-secondary-hover-bg);
    color: var(--body-fg);
    text-decoration: none;
}

/* EXTRA CHANGE LIST BUTTONS */

.object-tools a.tertiary:link,
.object-tools a.tertiary:visited {
    color: var(--button-tertiary-fg);
    background: var(--button-tertiary-bg);
    border: 1px solid var(--button-tertiary-border);
}

.object-tools a.tertiary:focus,
.object-tools a.tertiary:hover {
    color: var(--button-tertiary-hover-fg);
    background: var(--button-tertiary-hover-bg);
    border-color: var(--button-tertiary-hover-border);
}

/* CUSTOM PAGE SUBMIT BUTTON */

input[type=submit].primary {
    padding: 12px;
    color: var(--button-primary-fg);
    background: var(--button-primary-bg);
    font-weight: 600;
}

input[type=submit].primary:active,
input[type=submit].primary:focus,
input[type=submit].primary:hover {
    color: var(--button-primary-hover-fg);
    background: var(--button-primary-hover-bg);
    text-decoration: none;
}

/* "DEFAULT" SUBMIT BUTTON */
.button.default,
input[type=submit].default,
.submit-row input.default {
    background: var(--object-tools-bg);
    color: var(--object-tools-fg);
    padding: 12px 12px;
    border: 1px solid var(--object-tools-bg);
    font-weight: 600 !important;
}

.button.default:hover,
.button.default:focus,
.button.default:active,
input[type=submit].default:hover,
input[type=submit].default:focus,
input[type=submit].default:active,
.submit-row input.default:hover,
.submit-row input.default:focus,
.submit-row input.default:active {
    background: var(--object-tools-hover-bg);
    border: 1px solid var(--object-tools-hover-bg);
    text-decoration: none;
}

.button.default:focus,
input[type=submit].default:focus,
.submit-row input.default:focus {
    outline: 2px solid var(--object-tools-hover-bg);
    outline-offset: 1px;
}

/* PAGINATOR */

.paginator {
    border-top: none;
}

.paginator > ul {
    margin: 0;
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.paginator > ul > li {
    margin: 5px;
}

.paginator a:link,
.paginator a:visited {
    padding: 8px 12px;
    color: var(--button-tertiary-fg);
    background: var(--button-tertiary-bg);
    border: 1px solid var(--button-tertiary-border);
    border-radius: var(--component-radius);
}

.paginator a:hover,
.paginator a:focus,
.paginator a:active,
.paginator a.showall:hover,
.paginator a.showall:focus,
.paginator a.showall:active {
    color: var(--button-tertiary-hover-fg);
    background: var(--button-tertiary-hover-bg);
    border-color: var(--button-tertiary-hover-border);
}

.paginator a:focus,
.paginator a.showall:focus {
    outline: var(--component-outline);
    outline-offset: 1px;
}

.paginator a.this-page {
    vertical-align: unset;
    border-color: transparent;
    color: var(--button-tertiary-hover-fg);
    background: var(--button-tertiary-hover-bg);
}

.paginator a.showall {
    margin-left: 20px;
}

@media (max-width: 1200px) {
    .paginator {
        flex-direction: column;
    }

    .paginator > ul {
        flex-wrap: wrap;
    }

    .paginator a.showall {
        margin-left: 0;
    }
  }

/* THEME SWITCH */

.theme-toggle {
    border: 1px solid var(--page-header-button-border);
    border-radius: var(--component-radius);
}

.theme-toggle:focus,
.theme-toggle:focus-visible,
.theme-toggle:hover,
.theme-toggle:active {
    border-color: var(--button-primary-bg);
    background: var(--button-primary-bg);
}

.theme-toggle svg.theme-icon-when-auto,
.theme-toggle svg.theme-icon-when-dark,
.theme-toggle svg.theme-icon-when-light {
    padding: 6px;
    fill: var(--header-color);
    color: transparent;
}

/* BREADCRUMBS */

div.breadcrumbs {
    background: var(--breadcrumbs-bg);
    padding: 0;
    border: none;
    color: var(--breadcrumbs-fg);
    text-align: left;
    font-weight: 600;
    margin-bottom: 10px;
}

div.breadcrumbs a:link,
div.breadcrumbs a:visited {
    color: var(--breadcrumbs-link-fg);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: var(--inline-link-thickness);
    text-underline-offset: var(--inline-link-offset);
}

div.breadcrumbs a:hover {
    text-decoration-thickness: var(--inline-link-hover-thickness);
}

div.breadcrumbs a:focus, div.breadcrumbs a:hover {
    color: var(--breadcrumbs-fg);
    font-weight: 600;
}

.headingrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.headingtitleandsubmit {
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .headingrow {
        align-items: start;
        flex-direction: column;
    }
}

/* DELETE CONFIRMATION */

.delete-confirmation form input[type="submit"]:focus {
    outline: 2px solid var(--delete-button-hover-bg);
    outline-offset: 1px;
}

.delete-confirmation form .cancel-link {
    border: 1px solid var(--input-border);
    background-color: var(--body-bg);
    color: var(--body-fg);
}

.delete-confirmation form .cancel-link:hover,
.delete-confirmation form .cancel-link:focus,
.delete-confirmation form .cancel-link:active {
    background-color: var(--border-color);
    border-color: unset;
    text-decoration: none;
}

.delete-confirmation form .cancel-link:focus {
    outline: var(--component-outline);
    outline-offset: 1px;
}

.delete-confirmation .cancel-and-delete {
    margin-left: 10px;
}

/* ALERTS */
ul.messagelist a:link,
ul.messagelist a:visited {
    text-decoration: underline;
    text-decoration-thickness: var(--inline-link-thickness);
    text-underline-offset: var(--inline-link-offset);
    color: var(--inline-link-fg);
}

ul.messagelist a:hover {
    text-decoration-thickness: var(--inline-link-hover-thickness);
    color: var(--inline-link-hover-fg);
}

ul.messagelist li.success {
    border-bottom: 1px solid #5d9e24;
}

ul.messagelist li.warning {
    border-bottom: 1px solid #af8808;
}

ul.messagelist li.error {
    border-bottom: 1px solid #dd4646;
}

/* ABOUT PAGE */
.content-extra a:link,
.content-extra a:visited {
    text-decoration: underline;
    text-decoration-thickness: var(--inline-link-thickness);
    text-underline-offset: var(--inline-link-offset);
}

.content-extra a:hover {
    text-decoration-thickness: var(--inline-link-hover-thickness);
}

/* DIALOG */
.fullscreen-dialog {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
    border-radius: var(--component-radius);
    padding: var(--component-padding);
    box-shadow: var(--component-shadow);
}

.fullscreen-dialog > .dialog-content {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
