* {
    --background: #D9D9D9;
    --text: #080b0e;
    /*--primary: #535BF2;*/
    --primary: #4197cb;
    --accent: #FFFFFF;

    --generic-box-shadow: 0 0 0.75rem 0 rgba(150, 150, 150, 0.5);

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    /* IntelliJ begrijpt hier niet dat dit op de server is en geeft een warning, die negeren we ff mooi */
    /* noinspection CssUnknownTarget */ 
    background-image: url("/assets/img/ao-background-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.layout {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.content {
    margin-left: 5rem;
    padding: 1rem;
    width: calc(100% - 5rem);
    transition: margin-left 0.25s ease, width 0.25s ease;
}

.content.sidebar-expanded {
    margin-left: 13rem;
    width: calc(100% - 13rem);
}

/* Reusable container building blocks */
.container {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--accent);

    --container-box-shadow: 0 0 0.75rem 0 rgba(150, 150, 150, 0.5);

    -webkit-box-shadow: var(--generic-box-shadow);
    box-shadow: var(--generic-box-shadow);
}

.container > .header {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: var(--accent);
    margin: 0;
    height: 3rem;
}

.container > .body {
    flex: 1;
    min-height: 0;
    background: var(--accent);
}

.centered {
    margin: 1rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    color: var(--accent);
}

.icon svg {
    vertical-align: middle;
    display: inline-block;
    overflow: visible;
}

.table {
    width: 100%;
}

.table thead {
    font-weight: bold;
    background-color: var(--primary);
}

.table thead th {
    padding: 0 0.5rem;
    color: var(--accent);
}

.table tbody tr:nth-child(even) {
    /*background-color: var(--secondary);*/
}

.table tbody tr td {
    padding: 0 0.5rem 0 0.25rem;
}

.header {
    margin: auto;
    white-space: nowrap;
    width: min-content;
    text-align: center;
}

.headerDivider {
    height: 0.1rem;
    width: 21rem;
    border: 0.1rem solid var(--primary);
    border-radius: 2rem;
    background: var(--primary);
    margin: auto;
}

.headerTitle {
    font-size: 4rem;
    font-weight: 750;
}

.headerSubtitle {
    font-size: 2.5rem;
    font-weight: 700;
}

input[type="text"].input {
    margin: 0.3rem 0;
    padding: 0.5rem;
    font-size: 1.25rem;
    border-radius: 0.75rem;
    border: solid 1px var(--primary);
}

.btn {
    padding: 0.1rem;
    aspect-ratio: 1/1;
    color: var(--accent);
    border-radius: 0.75rem;
    background: none;
    border: none;
}

.btn svg,
.btn svg path {
    width: 95%;
    height: 95%;
    color: var(--accent);
}

.btn.warn,
.btn.warn svg,
.btn.warn svg path {
    color: #A80000;
}


.btn.toggled {
    background-color: color-mix(in srgb, var(--primary) 70%, white);
}

.btn:hover {
    cursor: pointer;
}

img {
    pointer-events: none;
}