/**
 * Invite form — dropdown and card-body overflow fixes.
 *
 * Lifted out of a 29-line inline ``<style>`` block in ``auth/invite.html``. The
 * rules exist so a ``select`` dropdown is not clipped by the card that contains
 * it; they are ordinary CSS and belong in a stylesheet.
 */

/* Ensure dropdown is fully visible */
.form-group {
    margin-bottom: 1.5rem;
}

/* Ensure modal content has enough space */
.card {
    min-height: auto;
    overflow: visible;
}

.card-body {
    padding: 1.5rem;
    overflow: visible;
}
