/* ===========================================
   UZAIRDESK | service_date.css (STABILIZER)
   Reason: file was 0 bytes -> layout breaks on quick/new pages
   Marker: SERVICE_DATE_STABILIZER_20260110
   =========================================== */

/* Safe base: do NOT fight header.css; just stabilize content area */
main{
  display:block;
  width:100%;
}

/* Prevent unexpected horizontal scroll */
html, body{
  overflow-x:hidden;
}

/* Universal container safety (if template uses .container) */
.container{
  width: min(1200px, calc(100% - 24px));
  margin-left:auto;
  margin-right:auto;
}

/* Quick/New Ticket pages typically want a soft bg */
body{
  background:#fff;
}

/* Ensure form controls inherit font */
input, select, textarea, button{
  font-family: inherit;
}

/* Make buttons clickable on mobile */
button{
  -webkit-tap-highlight-color: transparent;
}
