.no-left-panel {
  margin-left: 0;
}

.no-left-panel .main-content-panel-inner {
  border-left: none;
}

.status-label {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-white);
  margin-top: 6px;
}

.status-label.status-active {
  border-color: #bbf7d0;
  background: #dcfce7;
  color: var(--success-green);
}

.status-label.status-inactive {
  border-color: #fecaca;
  background: #fee2e2;
  color: var(--danger-red);
}

.no-details-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  color: var(--text-muted);
}

.no-details-placeholder i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.no-details-placeholder p {
  font-size: 14px;
}

.who-section {
  margin-top: 0;
}

.who-table-wrapper {
  overflow-x: auto;
  margin-top: 10px;
}

.who-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.who-table thead th {
  background: #1e40af;
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.who-table thead th:first-child {
  border-radius: 6px 0 0 0;
}

.who-table thead th:last-child {
  border-radius: 0 6px 0 0;
}

.who-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 13px;
}

.who-table tbody tr:hover {
  background: var(--bg-light);
}

.who-table tbody tr:last-child td {
  border-bottom: none;
}

.who-table .cell-yes {
  color: var(--success-green);
  font-weight: 500;
}

.who-table .cell-no {
  color: var(--text-muted);
}

.who-table-edit select {
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 12px;
  font-family: inherit;
  background: var(--bg-white);
  cursor: pointer;
  min-width: 60px;
}

.who-table-edit select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
