
/* Set size of text in badge (used when displaying no records messages) */
.badge-large {
    font-size: 1.25rem; /* Adjust this value as needed */
}

/* Hide the mobile phone field */
#mobile-phone-container {
    display: none;
}

/* Loading indicator for invite list filter */
#loadingIndicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
}

/* Pagination styling - add space between page numbers*/
.pagination a {
    margin: 0 5px;
}

/* Center buttons in cells on invite list */
.text-center {
    text-align: center;
}

/* styles.css */
input[type="checkbox"],
input[type="radio"] {
    /* accent-color: #0d6efd; Change the color to your desired accent color */
    transform: scale(1.5); /* Increase the size */
    margin-right: 0.5rem; /* Add some space to the right */
}

label {
    font-weight: bold; /* Make labels bold for better readability */
}
