/* ============================================================
   app.css — малки добавки върху Tailwind
   ============================================================ */

body { padding-bottom: env(safe-area-inset-bottom); }

.tabular-nums { font-variant-numeric: tabular-nums; }

/* Единен, лек радиус за полета, бутони, менюта и карти.
   Кръглите елементи (rounded-full) остават кръгли. */
[class~="rounded"]:not([class*="rounded-full"]),
[class*="rounded-"]:not([class*="rounded-full"]) {
  border-radius: 8px !important;
}

/* Лека равномерна сянка за полета/карти, за да изпъкват от фона. */
input, select, textarea,
.card, .rounded-xl, .rounded-2xl {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
}

/* Плавно появяване на прозорци (modal). */
@keyframes pop { from { transform: scale(.98); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.animate-pop { animation: pop .12s ease-out; }
