/* overlays-responsive.css — extracted from overlays.css to satisfy module size gate */

@media (max-width: 768px) {
.stage-rubric-modal, .modal {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

}

@media (max-width: 480px) {
.stage-rubric-modal, .modal {
        width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
}
