/*
   Tehran Holter Center — Common Shared Styles
 
 */

:root {
  --primary:       #0a6e74;
  --primary-light: #0e9aa7;
  --primary-pale:  #e6f7f8;
  --accent:        #00c2bd;
  --accent2:       #f0a500;

  --dark:       #0d1f22;
  --mid:        #2d4a4d;
  --text:       #1a3235;
  --text-light: #5a7a7e;
  --text-muted: #8faeb2;

  --bg:     #f5fbfc;
  --bg2:    #eaf5f6;
  --white:  #fff;
  --border: #c8e6e8;

  --error:   #e53e3e;
  --success: #38a169;
  --warning: #d97706;

  --shadow-sm: 0 2px 8px  rgba(10,110,116,.08);
  --shadow-md: 0 8px 30px rgba(10,110,116,.14);
  --shadow-lg: 0 20px 60px rgba(10,110,116,.18);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --tr: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility helpers ─── */
.text-muted  { color: var(--text-muted); }
.text-light  { color: var(--text-light); }
.text-primary{ color: var(--primary); }
.text-error  { color: var(--error); }
.text-success{ color: var(--success); }

/* ── Toast shared ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  width : max-content;
  max-width: 90%;
  pointer-events: none;
  height: max-content !important;       
  min-height: auto !important;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.search-hidden{display:none !important}
