@media screen and (min-width: 0px) {
  /* html {
    font-size: 150%;
    }
*/
}

.table {
  font-size: 1.2rem;
}

.large-button {
  font-size: 1.3rem;
  /* Adjust size as needed */
}

.nav-link {
    opacity: 1 !important;
    font-size: 1.09375rem;
}

.form-check-input-lg {
    width: 1.5em; /* Adjust as needed */
    height: 1.5em; /* Adjust as needed */
    margin-top: 0.25em; /* Adjust for vertical alignment */
}
/* Modal backdrop */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal content box */
.custom-modal .modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* Mobile: full-screen modal */
@media (max-width: 576px) {
    .custom-modal .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 1rem;
        box-sizing: border-box;
        justify-content: flex-start;
    }
}

