/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

.line-through {
    text-decoration-line: line-through;
}

/* Custom size example */
.modal-dialog.modal-custom {
    max-width: 75%; /* Or any specific width like 900px */
}
/* Custom taller content area example */
.modal-custom .modal-body {
    min-height: 60vh; /* Make the body taller */
    overflow-y: auto; /* Add scroll if content exceeds height */
}

.presentation-iframe {
    width: 100%; /* Makes the iframe take the full width of its container (.modal-body) */
    height: 55vh; /* Adjust this value as needed. 
                      This sets the iframe height to 55% of the viewport height.
                      It should ideally be less than or equal to the modal-body's min-height 
                      if you want to avoid scrolling within the iframe itself, 
                      though the modal-body has overflow:auto. */
    border: none; /* Removes the default border around the iframe */
    display: block; /* Ensures it behaves as a block-level element */
}