/* Obecné styly */
.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}

thead a {
    text-decoration: none;
}

thead th {
    font-size: 0.9rem;
}

/* Styly pro tabulku s oprávněními v User/edit.latte */
.permission-cell {
	cursor: pointer;
	user-select: none; /* Zabrání označování textu při klikání */
}

/* --- Generic List View (User, Trash, etc.) --- */

/* Skryje checkboxy ve výchozím stavu */
.list-view-table .list-view-checkbox {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s;
}

/* Zobrazí checkbox při najetí na řádek NEBO pokud je tabulka v režimu výběru */
.list-view-table.selection-mode .list-view-checkbox,
.list-view-table tbody tr:hover .list-view-checkbox {
    visibility: visible;
    opacity: 1;
}

/* Kontejner pro kontextové akce (zobrazí se při výběru) */
.contextual-actions {
    display: none; /* Skryto ve výchozím stavu */
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* Proklikávací řádky v tabulkách */
.list-view-table tbody tr {
    cursor: pointer;
}

.text-justify {
    text-align: justify;
}

.mh-40p {
    max-height: 40px;
}

.mh-80p {
    max-height: 80px;
}

.mw-750p {
    max-width: 750px;
}

#template-map-widget .position-absolute .btn {
    width: 29px;
    height: 29px;
    max-height: 29px;
}