/* ===== Compact, readable FOIA form ===== */
:root{
  --accent: #c62828;         /* muted red for accents */
  --ink: #2e2e2e;
  --hint: #6b7280;
  --line: #d1d5db;
  --bg: #ffffff;
  --panel: #f8fafc;
}

.df_Default{
  color: var(--ink);
  font-family: "Lucida Grande","Lucida Sans Unicode", Tahoma, sans-serif;
  max-width: 1100px;               /* give the grid some room */
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

/* Header/section trims */
.df_Default .section{
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  margin: 0 0 12px;
  border-radius: 8px;
}
.df_Default .section .header{
  background: #eef2f7;
  padding: 6px 10px;
  border-radius: 8px 8px 0 0;
}
.df_Default .section .header h1{
  font-size: 1.15rem;
  margin: 0;
}

/* Form grid: 3 even columns on desktop, collapses on small screens */
.df_Default .fields{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px 16px;       /* row x column gaps */
}

@media (max-width: 900px){
  .df_Default .fields{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 600px){
  .df_Default .fields{ grid-template-columns: 1fr; }
}

/* Each field stacks its label and control */
.df_Default .field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;           /* tighter vertical rhythm */
}

/* Width helpers when you can add classes */
.df_Default .field.full{ grid-column: 1 / -1; }
.df_Default .field.span-2{ grid-column: span 2; }

/* Labels & hints */
.df_Default .label{
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
}
.df_Default .label .req{ color: var(--accent); }

/* Inputs & textareas */
.df_Default .field input,
.df_Default .field select,
.df_Default .field textarea{
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}
.df_Default .field textarea{ min-height: 120px; }

/* Focus state */
.df_Default .field input:focus,
.df_Default .field select:focus,
.df_Default .field textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198,40,40,.12);
}

/* Make the request description (“Provide information…”) span wider */
.df_Default .field.request-desc{ grid-column: 1 / -1; }        /* if you can add a class */
.df_Default textarea[placeholder^="(Provide information"]{
  grid-column: 1 / -1;     /* fallback: target by placeholder text */
  min-height: 180px;
}

/* Date, reCAPTCHA, and long disclaimers can take full width */
.df_Default .field.long,
.df_Default .disclaimer{ grid-column: 1 / -1; }

/* Helper text */
.df_Default .hint{
  font-size: .85rem;
  color: var(--hint);
}

/* Button */
.df_Default button{
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}
.df_Default button:hover{ filter: brightness(.95); }

/* Reduce outer disclaimer size and improve legibility */
.df_Default .disclaimer{
  font-size: .85rem;
  color: #4b5563;
  line-height: 1.45;
  text-align: left;
  margin-top: 8px;
}
