:root {
    --color-primary: #083393;
    --color-green: #1d8041;
    --color-red: #ba2254;
    --color-light-blue: #edf4fa;

    --space-0: 0px;
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-28: 28px;
    --space-36: 36px;
    --space-40: 40px;
    --space-72: 72px;
}

* {
    margin: var(--space-0);
    padding: var(--space-0);
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    color: #444444;
    background-color: var(--color-light-blue);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

a {
    color: var(--color-primary);
}

a,
.action-btn-transparent,
.no-hover-underline:hover {
    text-decoration: none;
}

a,
button,
table tbody tr {
    transition: all 0.2s ease;
}

a:hover,
.action-btn-transparent:hover {
    text-decoration: underline;
}

.action-btn-blue:hover {
    background-color: #000757;
}

.action-btn-white:hover {
    background-color: var(--color-light-blue)
}

table tbody tr:nth-child(even) {
    background-color: #fafcff;
}

table tbody tr:hover {
    background-color: #fafffb
}


p {
    line-height: 1.5rem;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: var(--space-40);
    background-image: url("/assets/images/icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

input::placeholder,
textarea::placeholder {
    color: #AAA;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-nav {
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 var(--space-4) var(--space-16) rgba(0, 0, 0, 0.06);
}

.top-nav a {
    transition: color 0.2s ease, opacity 0.2s ease;
    padding: var(--space-8) var(--space-12);
    transition: all 0.2s ease;
    border-radius: var(--space-8);
}

.top-nav a:hover {
    background: #e6efff
}


@media (max-width: 500px) {
    #main-content {
        border-radius: var(--space-0)
    }

    .column-in-small-screen {
        flex-direction: column;
    }
}