.cct-conselho-wrapper {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 40px;
  color: #1a2940;
}
.cct-loading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 60px 0; color: #0d6efd; font-size: 15px;
}
.cct-spinner {
  width: 28px; height: 28px; border: 3px solid #e2e8f0;
  border-top-color: #0d6efd; border-radius: 50%;
  animation: cct-spin 0.8s linear infinite;
}
@keyframes cct-spin { to { transform: rotate(360deg); } }
.cct-error {
  background: #fff5f5; border: 1px solid #fc8181;
  border-left: 4px solid #e53e3e; border-radius: 8px;
  padding: 20px 24px; color: #c53030; font-size: 14px; margin: 20px 0;
}
.cct-empty { text-align: center; padding: 60px 20px; color: #718096; font-size: 15px; }
.cct-empty-icon { font-size: 40px; margin-bottom: 12px; }
.cct-item-card {
  background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 28px;
  overflow: hidden; transition: box-shadow .25s;
}
.cct-item-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.10); }
.cct-item-header {
  background: linear-gradient(135deg, #1560a8 0%, #0d9ddb 100%);
  padding: 14px 24px; display: flex; align-items: center; gap: 12px;
}
.cct-item-badge {
  background: rgba(255,255,255,.2); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,.4);
}
.cct-item-title {
  color: #fff; font-size: 16px; font-weight: 600; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cct-item-body {
  padding: 24px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.cct-field { display: flex; flex-direction: column; gap: 4px; }
.cct-field-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #718096; display: flex; align-items: center; gap: 6px;
}
.cct-field-value {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px;
  padding: 10px 14px; font-size: 14px; color: #2d3748;
}
.cct-field-value a { color: #0d6efd; text-decoration: none; }
.cct-field-value a:hover { text-decoration: underline; }
.cct-members { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.cct-member-chip {
  display: flex; align-items: center; gap: 8px;
  background: #f0f7ff; border: 1px solid #bfdbfe;
  border-radius: 20px; padding: 6px 14px 6px 6px; font-size: 13px; color: #1e40af;
}
.cct-member-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1560a8; color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cct-file-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f0f7ff; border: 1px solid #bfdbfe; border-radius: 8px;
  color: #1560a8; text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 10px 16px; width: 100%; box-sizing: border-box; transition: all .2s;
}
.cct-file-link:hover { background: #1560a8; color: #fff; border-color: #1560a8; }
.cct-file-unavailable { color: #a0aec0; font-size: 13px; font-style: italic; display: flex; align-items: center; gap: 6px; }
.cct-file-loading { color: #0d6efd; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.cct-total-bar {
  background: #f0f7ff; border: 1px solid #bfdbfe; border-radius: 8px;
  padding: 10px 16px; margin-bottom: 20px; font-size: 14px; color: #1e40af;
  display: flex; align-items: center; gap: 8px;
}
