@font-face {
  font-family: Basma;
  src: url("../fonts/ALKATIP-Basma.ttf");
}
@font-face {
  font-family: Tom;
  src: url("../fonts/ALKATIP-Basma-Tom.ttf");
}
@font-face {
  font-family: Tom;
  src: url("../fonts/ALKATIP-Basma-Tom-Bold.ttf");
  font-weight: 700;
}
:root {
  --p: #0f766e;
  --p2: #14b8a6;
  --soft: #ccfbf1;
  --bg: #f5f7f8;
  --card: #fff;
  --text: #172124;
  --muted: #657277;
  --border: #e2e8e9;
  --danger: #dc2626;
  --shadow: 0 10px 30px #102a2a14;
}
[data-theme="red"] {
  --p: #b91c1c;
  --p2: #ef4444;
  --soft: #fee2e2;
}
[data-theme="orange"] {
  --p: #c2410c;
  --p2: #f97316;
  --soft: #ffedd5;
}
[data-theme="amber"] {
  --p: #b45309;
  --p2: #f59e0b;
  --soft: #fef3c7;
}
[data-theme="green"] {
  --p: #15803d;
  --p2: #22c55e;
  --soft: #dcfce7;
}
[data-theme="emerald"] {
  --p: #047857;
  --p2: #10b981;
  --soft: #d1fae5;
}
[data-theme="cyan"] {
  --p: #0e7490;
  --p2: #06b6d4;
  --soft: #cffafe;
}
[data-theme="sky"] {
  --p: #0369a1;
  --p2: #0ea5e9;
  --soft: #e0f2fe;
}
[data-theme="blue"] {
  --p: #1d4ed8;
  --p2: #3b82f6;
  --soft: #dbeafe;
}
[data-theme="indigo"] {
  --p: #4338ca;
  --p2: #6366f1;
  --soft: #e0e7ff;
}
[data-theme="violet"] {
  --p: #6d28d9;
  --p2: #8b5cf6;
  --soft: #ede9fe;
}
[data-theme="purple"] {
  --p: #7e22ce;
  --p2: #a855f7;
  --soft: #f3e8ff;
}
[data-theme="fuchsia"] {
  --p: #a21caf;
  --p2: #d946ef;
  --soft: #fae8ff;
}
[data-theme="pink"] {
  --p: #be185d;
  --p2: #ec4899;
  --soft: #fce7f3;
}
[data-theme="rose"] {
  --p: #be123c;
  --p2: #f43f5e;
  --soft: #ffe4e6;
}
[data-theme="slate"] {
  --p: #334155;
  --p2: #64748b;
  --soft: #e2e8f0;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Basma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
.tom,
.btn {
  font-family: Tom, Basma, sans-serif;
}
.btn {
  border: 0;
  border-radius: 14px;
  padding: 11px 17px;
  background: var(--p);
  color: white;
  font-weight: 700;
}
.btn.secondary {
  background: var(--soft);
  color: var(--p);
}
.btn.danger {
  background: var(--danger);
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.muted {
  color: var(--muted);
}
.pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--p);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px;
  background: white;
  color: var(--text);
}
.toast {
  position: fixed;
  z-index: 99;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  background: #172124;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  display: none;
}
.empty {
  text-align: center;
  padding: 35px;
  color: var(--muted);
}
