body {
    /*Copy django admin*/
    font-size: 0.875rem;
}

/* Native-app feel when launched from the iPad home screen ("Add to Home Screen") */
@media all and (display-mode: standalone), all and (display-mode: fullscreen) {
    html, body {
        /* No rubber-band bounce / pull-to-refresh */
        overscroll-behavior: none;
        /* No double-tap-to-zoom delay */
        touch-action: manipulation;
        /* No grey flash on tap */
        -webkit-tap-highlight-color: transparent;
    }

    body {
        /* No long-press text selection / callout menus */
        -webkit-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        /* Keep content clear of the status bar / home indicator */
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    /* Form fields still need selection to be editable */
    input, textarea, [contenteditable] {
        -webkit-user-select: text;
        user-select: text;
    }
}

.select2-form-control .select2-container .select2-selection--single {
    height: 38px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}
