:root {
    --pico-font-size: 110%;
}

.material-symbols-outlined {
    font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
}

body {
    display: flex;
    flex-direction: column;
    min-height: 95vh;
}

header {
    margin-top: 2rem;
}

footer {
    margin-top: auto;
}

.header-text {
    display: inline-block;
    vertical-align: top;
}

.theme-toggle-icon {
    font-size: 1.5rem;
    vertical-align: middle;
}

html[data-theme=light] .theme-toggle-icon#theme-dark {
    display: none;
}

html[data-theme=dark] .theme-toggle-icon#theme-light {
    display: none;
}

.header-logo {
    width: 5rem;
    aspect-ratio: 1 / 1;
    margin-right: 1rem;
}

.indent {
    padding-left: 2rem;
}

section {
    margin-bottom: 3rem;
}

.warning {
    background-color: light-dark(#f39c12, #d35400);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.user-perm-editor {
    max-width: 40rem;
}

.user-perm-delete {
    font-size: 1.2rem;
    background-color: light-dark(#e74c3c, #c0392b);
    border-color: light-dark(#e74c3c, #c0392b);
}

.user-perm-delete:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.user-perm-delete:active {
    outline: none;
}
