/* Načteno až po Tailwind CDN — sjednocení pill tvaru pro tlačítka a vstupy */

body button:not(.rounded-none),
body input[type="submit"]:not(.rounded-none),
body input[type="button"]:not(.rounded-none),
body input[type="reset"]:not(.rounded-none),
body input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not(.rounded-none),
body select:not(.rounded-none) {
  border-radius: 9999px !important;
}

/* textarea: zaoblení větší než pill */
body textarea:not(.rounded-none) {
  border-radius: 1.5rem !important; /* Tailwind rounded-3xl */
}

/* Odkazy jako tlačítka (plná, obrysová, archiv/Zpět…) — Tailwind rounded-lg/xl by jinak přebíjelo vizuál */
body a.inline-flex.rounded-md,
body a.inline-flex.rounded-lg,
body a.inline-flex.rounded-xl,
body a.inline-flex.rounded-2xl {
  border-radius: 9999px !important;
}

/* Odkazové tlačítko s rámečkem bez inline-flex (např. Zpět) */
body a.rounded-lg.border,
body a.rounded-xl.border {
  border-radius: 9999px !important;
}

/* Blokové full-width „řádky“ odkazu (kategorie, menu) — stadium / pill */
body a.block.w-full.rounded-lg,
body a.block.w-full.rounded-xl {
  border-radius: 9999px !important;
}

/* Tlačítko s flex (např. avatar v headeru), kde zůstalo rounded-lg v HTML */
body button.flex.rounded-lg,
body button.flex.rounded-xl {
  border-radius: 9999px !important;
}

/* Odkazy stylované jako plná hlavní tlačítka (brand) */
body a[class*="bg-brand-600"] {
  border-radius: 9999px !important;
}

/* Nová poptávka: Dropzone (Preline) přidává .dropzone na kontejner — bez výchozího rámečku/stínu, zaoblení jako rounded-3xl */
body #new-request-file-upload.dropzone {
  border-radius: 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  min-height: 0 !important;
}
