/*
 * Styles for the Attendance Tracker Modal, adapted from Meet Manager.
 * This makes the modal independent of the meet-manager stylesheet.
 */

.lsmm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lsmm-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.lsmm-modal-content {
    margin: 40px auto;
    padding: 20px;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    position: relative;
    background: #fff;
}

.lsmm-modal-content .lsmm-modal-close {
    position: absolute; top: 10px; right: 15px; background: none; border: none; font-size: 24px; cursor: pointer; line-height: 1; padding: 0;
}