

/* ── PAGE WRAPPER ────────────────────────────────────────────── */
.dir-page {
  background: #FFFFFF;
  padding: 56px 0 80px;
}

/* ── PAGE HEADING ────────────────────────────────────────────── */
.dir-heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #3A3A1A;
  text-align: center;
  margin: 0 0 8px;
}

.dir-sub {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #364153;
  text-align: center;
  margin: 0 0 40px;
}

/* ── TABLE WRAPPER ───────────────────────────────────────────── */
.dir-table-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  overflow-x: auto;
}

/* ── TABLE ───────────────────────────────────────────────────── */
.dir-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arimo', sans-serif;
  font-size: 14px;
  line-height: 22px;
  border: 2px solid #000000;
}

/* All cells: black border */
.dir-table th,
.dir-table td {
  border: 1px solid #000000;
  padding: 10px 14px;
  vertical-align: top;
}

/* ── HEADER ROW  – olive background ─────────────────────────── */
.dir-table thead tr th {
  background: #8A923E;
  color: #FFFFFF;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  white-space: nowrap;
  border: 1px solid #000000;
}

/* ── BODY ROWS ───────────────────────────────────────────────── */
.dir-table tbody tr:nth-child(even) {
  background: #F5F6EC;
}

.dir-table tbody tr:nth-child(odd) {
  background: #FFFFFF;
}

.dir-table tbody tr:hover {
  background: #EAEDCA;
  transition: background 0.15s ease;
}

/* ── CELL SPECIFICS ──────────────────────────────────────────── */
.dir-table .col-no      { width: 60px;  text-align: center; white-space: nowrap; }
.dir-table .col-reg     { width: 110px; white-space: nowrap; }
.dir-table .col-company { font-weight: 600; }
.dir-table .col-contact { white-space: nowrap; }
.dir-table .col-address { min-width: 200px; }
.dir-table .col-details { min-width: 260px; }

/* company name styling */
.dir-company-name {
  font-weight: 700;
  color: #3A3A1A;
  display: block;
  margin-bottom: 2px;
}

/* reg badge */
.dir-reg-badge {
  display: inline-block;
  background: #C5CC7A;
  color: #3A3A1A;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* contact block */
.dir-contact p {
  margin: 0;
  line-height: 22px;
  color: #364153;
}

.dir-contact a {
  color: #6B7330;
  text-decoration: none;
}

.dir-contact a:hover {
  text-decoration: underline;
}

/* address block */
.dir-address p {
  margin: 0;
  color: #364153;
  line-height: 22px;
}

/* details / role block */
.dir-details {
  color: #364153;
  line-height: 22px;
}

.dir-details strong {
  color: #3A3A1A;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dir-table-wrap { padding: 0 16px; }
  .dir-heading    { font-size: 26px; }
}
