/* Full-screen dimmer */
#ma-terms-overlay{
	position:fixed;inset:0;background:rgba(0,0,0,.6);
	display:flex;align-items:center;justify-content:center;
	z-index:9999;
}
/* Modal box */
#ma-terms-modal{
	background:#fff;border-radius:10px;width:90%;max-width:640px;
	max-height:80vh;display:flex;flex-direction:column;
	box-shadow:0 10px 30px rgba(0,0,0,.3);
}
#ma-terms-scroll{padding:1.5rem;overflow-y:auto;flex:1 1 auto;}
.ma-terms-controls{
	padding:1rem;border-top:1px solid #eee;display:flex;gap:.8rem;
	flex-wrap:wrap;align-items:center;justify-content:flex-end;
}
.ma-terms-controls label{flex:1 1 auto}
.ma-terms-controls button{
	padding:.6rem 1.2rem;border:none;border-radius:4px;cursor:pointer;
}
#ma-terms-continue{background:#0073aa;color:#fff}
#ma-terms-continue[disabled],#ma-terms-check[disabled]{opacity:.5;cursor:not-allowed}
