/* Produktivní nástěnka – doplňkové styly */

[x-cloak] { display: none !important; }

/* FullCalendar – sladění s Tailwind designem */
#main-calendar { --fc-border-color: rgb(229 231 235); --fc-page-bg-color: transparent; }
.dark #main-calendar { --fc-border-color: rgb(55 65 81); --fc-neutral-bg-color: rgb(31 41 55); }
#main-calendar .fc-toolbar-title { font-size: 1.05rem; font-weight: 700; }
#main-calendar .fc-button {
    background: rgb(243 244 246); border: none; color: rgb(55 65 81);
    border-radius: 0.6rem; padding: 0.35rem 0.75rem; font-size: 0.82rem; font-weight: 500;
    box-shadow: none !important;
}
.dark #main-calendar .fc-button { background: rgb(55 65 81); color: rgb(229 231 235); }
#main-calendar .fc-button:hover { background: rgb(229 231 235); }
.dark #main-calendar .fc-button:hover { background: rgb(75 85 99); }
#main-calendar .fc-button-active { background: rgb(79 70 229) !important; color: #fff !important; }
#main-calendar .fc-daygrid-day.fc-day-today,
#main-calendar .fc-timegrid-col.fc-day-today { background: rgb(238 242 255); }
.dark #main-calendar .fc-daygrid-day.fc-day-today,
.dark #main-calendar .fc-timegrid-col.fc-day-today { background: rgb(49 46 129 / 0.25); }
#main-calendar .fc-event { border-radius: 0.4rem; border: none; font-size: 0.75rem; padding: 1px 4px; cursor: default; }
#main-calendar a { color: inherit; text-decoration: none; }

/* Formulářové prvky – jemný vzhled i bez Tailwind forms pluginu */
input[type="text"], input[type="email"], input[type="password"], input[type="date"],
input[type="time"], select, textarea { border-width: 1px; outline: none; }
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 3px rgb(99 102 241 / 0.15); }

/* Drag & drop */
.sortable-ghost { opacity: 0.4; }
.drag-handle { cursor: grab; }
.drag-handle:active { cursor: grabbing; }
