/* ═══════════════════════════════════════════
   List — TailAdmin‑style
   ═══════════════════════════════════════════ */

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.list-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: 14px var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
  color: var(--color-text);
  font-size: var(--font-size-sm);
}

.list-item svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.list-item:last-child {
  border-bottom: none;
}

.list-item:hover {
  background: var(--color-background);
}

.list-content {
  flex: 1;
  min-width: 0;
}

.list-title {
  margin: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.4;
}

.list-subtitle {
  margin: 2px 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.btn-call {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-phone-bg);
  color: var(--color-phone-icon);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-call:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
