/* MedScribe Pro - Dashboard Styles */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-light: #E0F2FE;
  --sidebar-bg: #0F172A;
  --sidebar-hover: rgba(255,255,255,0.08);
  --sidebar-text: #94A3B8;
  --bg: #F1F5F9;
  --card-bg: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --purple: #8B5CF6;
  --purple-light: #EDE9FE;
  --orange: #F97316;
  --orange-light: #FFF7ED;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.05);
  --transition: 0.2s ease;
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== App Layout ===== */
.app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 260px;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  z-index: 100;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}

.sidebar-brand i {
  font-size: 1.4rem;
  color: var(--primary);
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link:hover {
  background: var(--sidebar-hover);
  color: #E2E8F0;
}

.nav-link.active {
  background: rgba(14,165,233,0.15);
  color: var(--primary);
}

.nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  color: #F1F5F9;
  font-weight: 600;
  font-size: 0.875rem;
}

.user-role {
  color: var(--sidebar-text);
  font-size: 0.75rem;
}

/* ===== Main Content ===== */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* ===== Top Bar ===== */
.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
}

.search-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  max-width: 480px;
  transition: border-color var(--transition);
}

.search-wrapper:focus-within {
  border-color: var(--primary);
  background: white;
}

.search-wrapper i {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.search-wrapper input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.875rem;
  width: 100%;
  font-family: inherit;
  color: var(--text);
}

.search-wrapper input::placeholder {
  color: var(--text-muted);
}

.topbar-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-record {
  background: var(--danger);
  color: white;
}

.btn-record:hover {
  background: #DC2626;
}

.btn-record.recording {
  animation: pulse-bg 1.5s ease-in-out infinite;
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #059669;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #DC2626;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-danger-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--danger);
}

.btn-danger-outline:hover {
  border-color: var(--danger);
  background: var(--danger-light);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.btn-icon {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-icon:hover {
  background: var(--bg);
  color: var(--text);
}

/* ===== Content Area ===== */
.content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* ===== Stats Row ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.stat-icon.blue { background: var(--primary-light); color: var(--primary); }
.stat-icon.green { background: var(--success-light); color: var(--success); }
.stat-icon.purple { background: var(--purple-light); color: var(--purple); }
.stat-icon.orange { background: var(--orange-light); color: var(--orange); }

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Dashboard Grid ===== */
.dashboard-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}

/* ===== Panels ===== */
.panel {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.panel-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.panel-filters {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #FAFBFC;
}

.panel-filters select,
.panel-filters input[type="date"] {
  flex: 1;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}

.panel-filters select:focus,
.panel-filters input[type="date"]:focus {
  border-color: var(--primary);
}

/* ===== Consultation List ===== */
.consultation-list,
.consultations-full-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px;
}

.consult-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  margin-bottom: 2px;
}

.consult-item:hover {
  background: var(--bg);
}

.consult-item.active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.consult-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.consult-info {
  flex: 1;
  min-width: 0;
}

.consult-name {
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.consult-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.consult-meta i {
  font-size: 0.7rem;
}

.consult-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.consult-status.completed { background: var(--success); }
.consult-status.in-progress { background: var(--warning); }

/* ===== Empty State ===== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.25;
}

.empty-state h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
}

.empty-state p {
  font-size: 0.875rem;
  max-width: 280px;
}

/* ===== Detail Panel ===== */
.detail-panel {
  overflow-y: auto;
}

.detail-content {
  padding: 24px;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.detail-patient-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.detail-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.detail-audio {
  margin-bottom: 24px;
}

.detail-audio h3,
.detail-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.detail-audio h3 i,
.detail-section h3 i {
  color: var(--primary);
  font-size: 0.9rem;
}

.detail-audio audio {
  width: 100%;
  border-radius: var(--radius-sm);
  height: 42px;
}

.text-muted {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.detail-section {
  margin-bottom: 24px;
}

/* Transcript */
.transcript-content {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px 16px;
}

.transcript-line {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.55;
}

.transcript-line:last-child {
  border-bottom: none;
}

.speaker {
  font-weight: 600;
  min-width: 65px;
  color: var(--primary-dark);
  flex-shrink: 0;
  font-size: 0.82rem;
}

/* SOAP Summary */
.soap-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.soap-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid;
}

.soap-item.subjective {
  background: #DBEAFE;
  border-color: #3B82F6;
}

.soap-item.objective {
  background: #D1FAE5;
  border-color: #10B981;
}

.soap-item.assessment {
  background: #FEF3C7;
  border-color: #F59E0B;
}

.soap-item.plan {
  background: #EDE9FE;
  border-color: #8B5CF6;
}

.soap-label {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.soap-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== Patients View ===== */
.patients-list {
  padding: 8px 16px;
}

.patient-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.patient-row:last-child {
  border-bottom: none;
}

.patient-row:hover {
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.patient-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.patient-details {
  flex: 1;
  min-width: 0;
}

.patient-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.patient-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.patient-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ===== Modals ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* Form elements */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* ===== Recording Modal ===== */
.recording-modal {
  text-align: center;
  max-width: 520px;
  border: 2px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.08), var(--shadow-lg);
}

.recording-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.rec-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--danger);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rec-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--danger);
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.rec-timer {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.live-transcript {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 140px;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  border: 1px solid var(--border);
  scroll-behavior: smooth;
}

.live-transcript > div {
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  animation: fadeInLine 0.2s ease-out;
}

.live-transcript > div:last-child {
  border-bottom: none;
}

@keyframes fadeInLine {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.transcript-placeholder {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding-top: 50px;
}

.speech-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--warning-light);
  border-radius: var(--radius-sm);
  text-align: left;
}

.speech-note i {
  color: var(--warning);
}

/* ===== Toasts ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2000;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.toast.show {
  transform: translateX(0);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--primary); }
.toast.warning { background: #D97706; color: white; }

/* ===== Animations ===== */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* ===== Utilities ===== */
.hidden {
  display: none !important;
}

/* ===== Scrollbar ===== */
.consultation-list::-webkit-scrollbar,
.consultations-full-list::-webkit-scrollbar,
.detail-panel::-webkit-scrollbar,
.content::-webkit-scrollbar,
.live-transcript::-webkit-scrollbar {
  width: 6px;
}

.consultation-list::-webkit-scrollbar-track,
.consultations-full-list::-webkit-scrollbar-track,
.detail-panel::-webkit-scrollbar-track,
.content::-webkit-scrollbar-track,
.live-transcript::-webkit-scrollbar-track {
  background: transparent;
}

.consultation-list::-webkit-scrollbar-thumb,
.consultations-full-list::-webkit-scrollbar-thumb,
.detail-panel::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb,
.live-transcript::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 3px;
}

.consultation-list::-webkit-scrollbar-thumb:hover,
.consultations-full-list::-webkit-scrollbar-thumb:hover,
.detail-panel::-webkit-scrollbar-thumb:hover,
.content::-webkit-scrollbar-thumb:hover,
.live-transcript::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .consultations-panel {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    transform: translateX(-100%);
    box-shadow: var(--shadow-lg);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex !important;
  }

  .topbar {
    padding: 12px 16px;
  }

  .topbar-actions span {
    display: none;
  }

  .content {
    padding: 16px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-actions .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .search-wrapper {
    display: none;
  }

  .modal {
    width: 95%;
    padding: 20px;
  }
}

/* ===== Grounding & Quality Indicators ===== */
.grounding-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-left: auto;
  white-space: nowrap;
}

.grounding-high {
  background: #D1FAE5;
  color: #065F46;
}

.grounding-medium {
  background: #FEF3C7;
  color: #92400E;
}

.grounding-low {
  background: #FEE2E2;
  color: #991B1B;
}

.grounding-overall {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
  border: 1px solid #BAE6FD;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: #0369A1;
  margin-bottom: 12px;
}

.grounding-overall i {
  color: #0EA5E9;
}

.insufficient-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #FEF3C7, rgba(253, 230, 138, 0.25));
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: #92400E;
  margin-bottom: 12px;
}

.insufficient-warning i {
  color: #F59E0B;
  flex-shrink: 0;
}

.soap-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
