.consent-tabs table {
  table-layout: fixed;
  width: 100%;
}
.consent-tabs .cell-data--number {
  width: 5%;
  text-align: center;
  font-size: 0.875rem;
}
.consent-tabs .cell-data--string {
  width: 25%;
}
.consent-tabs .cell-data--status {
  width: 12%;
  text-align: left;
  font-weight: 500;
}
.consent-key-group {
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0;
  background: white;
  margin-bottom: 1.5rem;
}
.consent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d0d0d0;
  cursor: pointer;
  user-select: none;
}
.consent-header:hover {
  background-color: #e8e8e8;
}
.consent-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.consent-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0066cc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.consent-title:hover {
  text-decoration: underline;
}
.edit-icon {
  font-size: 0.875rem;
  color: #666;
}
.active-version-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #666;
}
.expand-indicator {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.expand-indicator .arrow {
  transition: transform 0.2s;
  display: inline-block;
}
.expand-indicator.expanded .arrow {
  transform: rotate(180deg);
}
.old-versions {
  display: none;
  padding: 0.5rem;
}
.old-versions.expanded {
  display: block;
}
.old-versions-label {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}
.status-published {
  color: #22c55e;
}
.status-scheduled {
  color: #f59e0b;
}
.status-unpublished {
  color: #6b7280;
}
