Confirm Here Modal Options
data class ConfirmHereModalOptions(val isVisible: Boolean = false, val message: String = "Are you still there?", val onConfirm: () -> Unit, val onTimeout: () -> Unit, val countdownSeconds: Int = 60, val backgroundColor: Int = 0xFFFFFFFF.toInt(), val warningColor: Int = 0xFFFF9800.toInt())
ConfirmHereModal - Presence confirmation dialog for inactive users.
Displays "Are you still there?" prompt to confirm user presence. Automatically triggers callback if not responded within timeout.