/**
 * IL REALTORS Web Services — front-end styles.
 *
 * Everything is namespaced under .irws-search so the child theme's legacy
 * styles (.searchsubmit, .search-field, .table__members, etc.) can't leak in.
 * Brand palette: navy #00366e, blue #005596, cyan #29c0ef, magenta #ab2e8b,
 * grey #67686a, hairline #e7e7e8.
 */

.irws-search {
  --navy: #00366e;
  --blue: #005596;
  --cyan: #29c0ef;
  --magenta: #ab2e8b;
  --grey: #67686a;
  --hair: #e7e7e8;
  --ink: #1e293b;
  --radius: 12px;
  font-family: inherit;
  color: var(--ink);
  margin: 10px 0;
}
.irws-search *,
.irws-search *::before,
.irws-search *::after { box-sizing: border-box; }

/* ---------- Search panel (card) ---------- */
.irws-search__panel {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 54, 110, .04), 0 8px 24px rgba(0, 54, 110, .06);
  padding: 22px;
  margin-bottom: 22px;
}

/* ---------- Segmented tab control ---------- */
.irws-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #eef2f7;
  border-radius: 999px;
  margin-bottom: 20px;
  max-width: 100%;
  flex-wrap: wrap;
}
.irws-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--grey);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
.irws-tab:hover { color: var(--navy); }
.irws-tab.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(0, 54, 110, .12), 0 2px 8px rgba(0, 54, 110, .10);
}
.irws-tab:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.irws-tab-panel { display: none; }
.irws-tab-panel.is-active { display: block; }

/* ---------- Fields ---------- */
.irws-form { margin: 0; }
.irws-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  align-items: end;
}
.irws-field-group { display: block; min-width: 0; }
.irws-field-label { display: block; }
.irws-field-label > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.irws-search input[type="text"],
.irws-search input[type="number"],
.irws-search input[type="search"],
.irws-search select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  height: auto;
  min-height: 48px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.irws-search select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2367686a'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.irws-search input:focus,
.irws-search select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(41, 192, 239, .25);
}
.irws-search ::placeholder { color: #94a3b8; }

/* ---------- Actions / button ---------- */
.irws-actions { margin-top: 18px; }
.irws-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #00366e 0%, #005596 100%);
  border: none;
  border-radius: 9px;
  padding: 13px 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 54, 110, .22);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.irws-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 54, 110, .30);
}
.irws-btn:active { transform: translateY(0); box-shadow: 0 3px 9px rgba(0, 54, 110, .22); }
.irws-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.irws-btn__icon { width: 16px; height: 16px; fill: currentColor; flex: 0 0 auto; }

/* ---------- Result count ---------- */
.irws-result-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 10px;
}
.irws-result-count strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--magenta);
}

/* ---------- Empty state ---------- */
.irws-empty {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: #f4f9fc;
  border: 1px solid #d6ecf6;
  border-left: 4px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
  margin: 8px 0;
}
.irws-empty::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%2329c0ef'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E");
}

/* ---------- Results table ---------- */
.irws-search .table__members {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 54, 110, .06);
}
.irws-search .table__members thead {
  background: linear-gradient(135deg, #00366e 0%, #004b86 100%);
}
.irws-search .table__members th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 14px;
  white-space: nowrap;
}
.irws-search .table__members td {
  padding: 13px 14px;
  font-size: 14px;
  border-top: 1px solid #eef2f7;
}
.irws-search .table__members tbody tr { transition: background .12s; }
.irws-search .table__members tbody tr:nth-child(2n) { background: #f8fafc; }
.irws-search .table__members tbody tr:hover { background: #eaf6fc; }
.irws-search .table__members a { color: var(--blue); text-decoration: none; }
.irws-search .table__members a:hover { color: var(--navy); text-decoration: underline; }

/* DataTables chrome (search box + pagination) */
.irws-search .dataTables_wrapper .dataTables_filter { margin-bottom: 12px; }
.irws-search .dataTables_wrapper .dataTables_filter input {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 12px;
  margin-left: 8px;
}
.irws-search .dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(41, 192, 239, .25);
}
.irws-search .dataTables_wrapper .dataTables_paginate { margin-top: 12px; }
.irws-search .dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 5px 11px !important;
  margin-left: 4px;
  border: 1px solid var(--hair) !important;
  border-radius: 6px !important;
  color: var(--blue) !important;
  background: #fff !important;
}
.irws-search .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.irws-search .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
.irws-search .dataTables_wrapper .dataTables_info { color: var(--grey); font-size: 13px; padding-top: 12px; }

/* DataTables length menu (keep it small, not the full-width form select) */
.irws-search .dataTables_wrapper .dataTables_length { margin-bottom: 12px; color: var(--grey); font-size: 13px; }
.irws-search .dataTables_wrapper .dataTables_length select {
  width: auto;
  min-height: 0;
  height: auto;
  display: inline-block;
  padding: 5px 26px 5px 10px;
  margin: 0 4px;
  background-position: right 8px center;
  background-size: 16px;
  font-size: 13px;
}

/* ---------- Loader ---------- */
.irws-search .loader { padding: 24px 0; }
.irws-search .loader .icon { height: 50px; width: 50px; margin: 0 auto; display: block; }
.irws-search .loader svg { width: 100%; height: 100%; }
.irws-search .loader path, .irws-search .loader rect { fill: var(--cyan); }
.irws-search .loader .loader-text {
  text-align: center; color: var(--grey); font-size: .875em; display: block;
  width: 100%; font-style: italic; margin-top: 8px;
}

/* ---------- Committee involvement (year accordion) ---------- */
.irws-search .irws-involvement-title { font-size: 20px; color: var(--navy); margin: 0 0 18px; }
.irws-search .irws-years-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.irws-search .irws-years-action {
  appearance: none;
  background: none;
  border: none;
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 4px;
}
.irws-search .irws-years-action:hover { color: var(--navy); text-decoration: underline; }
.irws-search .irws-years-action:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.irws-search .irws-years-sep { color: #cbd5e1; }
.irws-search .irws-years { display: flex; flex-direction: column; gap: 12px; }
.irws-search .irws-year {
  border: 1px solid var(--hair);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 54, 110, .04);
}
.irws-search .irws-year__toggle {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f9fc;
  border: none;
  border-left: 4px solid var(--magenta);
  padding: 15px 18px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background .15s;
}
.irws-search .irws-year__toggle:hover { background: #eef4f9; }
.irws-search .irws-year__toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.irws-search .irws-year__label {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.irws-search .irws-year__divider {
  width: 1px;
  height: 18px;
  background: #cbd5e1;
  flex: 0 0 auto;
}
.irws-search .irws-year__count {
  font-size: 14px;
  color: var(--grey);
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .irws-search .irws-year__toggle { flex-wrap: wrap; }
  .irws-search .irws-year__divider { display: none; }
  .irws-search .irws-year__count { flex-basis: 100%; }
  .irws-search .irws-year__chevron { position: absolute; right: 18px; top: 16px; }
  .irws-search .irws-year { position: relative; }
}
.irws-search .irws-year__chevron {
  width: 20px;
  height: 20px;
  margin-left: auto;
  fill: var(--navy);
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.irws-search .irws-year.is-open .irws-year__chevron { transform: rotate(180deg); }
.irws-search .irws-year__body { padding: 18px; border-top: 1px solid var(--hair); }
.irws-search .irws-involvement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media screen and (min-width: 700px) {
  .irws-search .irws-involvement-grid { grid-template-columns: repeat(2, 1fr); }
}
.irws-search .irws-involvement-card {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 8px;
}
.irws-search .irws-involvement-card__name { margin: 0 0 6px; font-size: 15px; color: var(--navy); }
.irws-search .irws-involvement-card__pos { margin: 0; font-size: 14px; color: var(--ink); }

/* ---------- Committee list ---------- */
.irws-search .table__committees ul { list-style: none; padding: 0; margin-top: 24px; }
.irws-search .committee-name {
  margin: 0 0 12px;
  cursor: pointer;
  color: var(--navy);
  transition: color .2s;
}
.irws-search .committee-name:hover { color: var(--blue); text-decoration: underline; }
.irws-search .table__committees ul.members { margin: 0 0 20px; }
.irws-search .table__committees--name { font-size: 16px; font-weight: 700; }
.irws-search .committee-members-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 20px;
  padding-top: 15px;
}
@media screen and (min-width: 600px) {
  .irws-search .committee-members-table { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 900px) {
  .irws-search .committee-members-table { grid-template-columns: repeat(4, 1fr); }
}
.irws-search .committee-members-table.active {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 15px;
}
.irws-search .members { min-width: 0; margin: 0; }
.irws-search .search-section-title { margin-bottom: 0 !important; }
.irws-search .btn--small {
  display: inline-block;
  background: linear-gradient(135deg, #00366e 0%, #005596 100%);
  border-radius: 6px;
  color: #fff;
  font-size: .8em;
  font-weight: 600;
  padding: 7px 12px;
  margin: 6px 0;
  cursor: pointer;
  border: none;
  transition: filter .2s;
}
.irws-search .btn--small:hover { filter: brightness(1.08); color: #fff; }
.irws-search .search-section-title { font-size: 16px; color: var(--navy); }
