/* ════════════════════════════════════════════
   REUNIÕES
   ════════════════════════════════════════════ */

.meetings-split {
  display: grid;
  grid-template-columns: 26% 74%;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) {
  .meetings-split { grid-template-columns: 1fr; }
}

/* Year filter buttons */
.meet-year-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.meet-year-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink-500);
  cursor: pointer;
  font-family: inherit;
  transition: background 120ms, color 120ms;
}
.meet-year-btn:hover { background: var(--surface-3, #e5e7eb); color: var(--ink-700); }
.meet-year-btn.active { background: #111111; color: #fff; border-color: #111111; }

/* Attendance P/J/A buttons */
.pa-group {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.pa-btn {
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 120ms;
  font-family: inherit;
  color: var(--ink-500);
}
.pa-btn:hover { background: var(--surface-3, #e5e7eb); }
.pa-btn.p-active { background: var(--green-700); color: #fff; }
.pa-btn.a-active { background: var(--danger); color: #fff; }
.pa-btn.a-active-pending { background: #e5e7eb; color: #9ca3af; }
.pa-btn:disabled { cursor: not-allowed; opacity: .5; }

/* Compact attendance row list — 3 columns */
.att-row-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
}
.att-row-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.att-row-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(22,163,74,.08);
  color: #15803d;
  border: 1px solid rgba(22,163,74,.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.att-row-name {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Future meeting info banner */
.meet-future-banner {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-700);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  line-height: 1.4;
}
.meet-future-banner svg { flex-shrink: 0; margin-top: 1px; }

/* Quorum bar */
.meet-quorum-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meet-quorum-bar-bg {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.meet-quorum-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 400ms ease;
}
.meet-quorum-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
}
