/* ========================================================================= */
/* GLOBALNE NASTAVITVE ZA TABULATOR TABELE (Tabulator.css)                   */
/* ========================================================================= */

/* --- 1. PRELOM BESEDILA V GLAVAH STOLPCEV --- */
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
    white-space: normal !important;
    text-overflow: clip !important;
    word-break: break-word !important;
    line-height: 1.2 !important;
}

/* POPRAVEK: Vsebina glave se mora vedno raztegniti do roba, da so črte polne višine! */
.tabulator .tabulator-header .tabulator-col-content {
    height: 100% !important;
}

/* --- 2. PREPREČEVANJE "SIVEGA" OBARVANJA VRSTIC Z MIŠKO (HOVER) --- */
.tabulator .tabulator-row.tabulator-selectable:not(.tabulator-selected):hover {
    background-color: #fff !important;
    cursor: default !important;
}
.tabulator .tabulator-row.tabulator-row-even.tabulator-selectable:not(.tabulator-selected):hover {
    background-color: #efefef !important;
    cursor: default !important;
}

/* --- 3. SAMO SPREMEMBA FONTA --- */
.tabulator,
.tabulator .tabulator-cell,
.tabulator .tabulator-header .tabulator-col-title {
    font-size: 11px !important;
}

/* --- 4. GLOBALNA BARVA ZA IZBRANE (SELEKTIRANE) VRSTICE --- */
.tabulator-row.tabulator-selected,
.tabulator-row.tabulator-row-even.tabulator-selected {
    background-color: #bad7f5 !important;
    color: #333 !important; /* Poskrbimo, da besedilo ostane temno in berljivo */
}