/* Basic styling - tweak to match your theme */
.ats-form { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; background:linear-gradient(180deg,#0f1724, #071026); padding:22px; border-radius:10px; color:#fff; }
.ats-form label { display:flex; flex-direction:column; font-weight:600; font-size:14px; color:#fff; }
.ats-form input[type="text"], .ats-form input[type="email"], .ats-form input[type="url"], .ats-form textarea { padding:10px; border-radius:6px; border:1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); color:#fff; outline:none; }
.ats-submit-btn { background: linear-gradient(90deg,#06b6d4,#7c3aed); color:#fff; padding:12px 18px; border-radius:8px; border:0; font-weight:700; cursor:pointer; margin-top:6px; }
.ats-submit-btn:hover { opacity:0.95; }
.required { color:#ffb3b3; margin-left:6px; font-weight:700; }

/* Modal */
.ats-modal { display:none; position:fixed; left:0; top:0; right:0; bottom:0; background: rgba(0,0,0,0.6); align-items:center; justify-content:center; z-index:9999; }
.ats-modal-content { background:#fff; color:#0b1220; padding:22px; border-radius:10px; max-width:480px; text-align:center; box-shadow:0 8px 30px rgba(2,6,23,0.6); }
.ats-close-btn { margin-top:12px; padding:8px 14px; border-radius:8px; border:0; background:#0b1220; color:#fff; cursor:pointer; }