.patient-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.patient-row:last-child {
  border-bottom: none;
}

.patient-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 22px;
  height: 22px;
  background: #0078d4;
  border-radius: 4px;
}

.clickable {
  cursor: pointer;
  color: #0078d4;
}

.clickable:hover {
  text-decoration: underline;
}

.disabled {
  color: #999;
}
.patient-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.patient-photo {
  width: 90px;
  height: 90px;
  background: #d0d0d0;
  border-radius: 6px;
}

.patient-card-right h2 {
  margin-bottom: 10px;
}
.back-btn {
  background: #ddd;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

.back-btn:hover {
  background: #ccc;
}

.viewer-top-btn {
  background: #0078d4;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.viewer-top-btn:hover {
  background: #005fa3;
}
