/* Mirage District — fillable bid forms (print → PDF) */
* { box-sizing: border-box; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  color: #111;
  max-width: 8.5in;
  margin: 0 auto;
  padding: 0.5in;
  background: #f4f4f4;
}
.sheet {
  background: #fff;
  padding: 0.45in;
  border: 1px solid #ccc;
}
h1 { font-size: 16pt; margin: 0 0 4px; }
.meta { font-size: 9pt; color: #444; margin-bottom: 14px; }
.banner {
  background: #1a1a1a;
  color: #e8c547;
  padding: 8px 12px;
  font-size: 9pt;
  font-weight: bold;
  margin-bottom: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
label { display: block; font-size: 8pt; font-weight: bold; text-transform: uppercase; color: #555; margin-bottom: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
  width: 100%;
  border: 1px solid #999;
  padding: 6px 8px;
  font-size: 11pt;
}
textarea { min-height: 48px; resize: vertical; }
table.bid {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 10pt;
}
table.bid th, table.bid td {
  border: 1px solid #333;
  padding: 6px 8px;
  vertical-align: top;
}
table.bid th { background: #eee; text-align: left; }
table.bid td.amount { width: 110px; }
table.bid input { border: none; width: 100%; font-size: 10pt; }
.scope li { margin-bottom: 4px; }
.checks { list-style: none; padding: 0; }
.checks li { margin: 6px 0; }
.checks input { margin-right: 6px; }
.totals { margin-top: 12px; }
.totals td { font-weight: bold; }
.actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #1a1a1a;
  color: #e8c547;
  text-decoration: none;
  font-weight: bold;
  font-size: 10pt;
  border: none;
  cursor: pointer;
}
.btn--line { background: #fff; color: #111; border: 2px solid #111; }
.note { font-size: 9pt; color: #555; margin-top: 12px; }
.attach-block {
  margin: 14px 0;
  padding: 12px;
  background: #f9f6ee;
  border: 1px dashed #c9a227;
}
.attach-block input[type="file"] { margin-top: 6px; font-size: 10pt; }
.btn--submit { background: #2d5a27; color: #fff; }
.btn--submit:disabled { opacity: 0.6; cursor: wait; }
.submit-status { width: 100%; font-size: 9pt; color: #2d5a27; margin: 8px 0 0; }
@media print {
  .attach-block, .btn--submit, .submit-status { display: none; }
  body { background: #fff; padding: 0; }
  .sheet { border: none; padding: 0; }
  .actions { display: none; }
  input, textarea { border-bottom: 1px solid #999; }
}
