/* ===== Global ISTA font override (entire app + EasyUI) ===== */
:root {
  --ista-font: "ISTA", "ISTA Sans", Arial, sans-serif;
}

html, body {
  font-family: var(--ista-font) !important;
}

/* všetko v appke */
*, *::before, *::after {
  font-family: var(--ista-font) !important;
}

/* EasyUI špecifické prvky (pre istotu) */
.easyui-layout,
.panel,
.window,
.dialog,
.datagrid,
.datagrid * ,
.l-btn,
.l-btn * ,
.textbox,
.textbox * ,
.combo,
.combo * ,
.menu,
.menu * ,
.tabs,
.tabs * ,
.pagination,
.pagination * {
  font-family: var(--ista-font) !important;
}
#header_bar .l-btn,
#header_bar .l-btn *,
#header_bar .l-btn:hover,
#header_bar .l-btn:hover *,
#header_bar .l-btn:active,
#header_bar .l-btn:active *,
#header_bar .l-btn:focus,
#header_bar .l-btn:focus * {
  font-family: var(--ista-font) !important;
}
#logo_bar { background-image: url('/images/ista_logo_big_20240924.png'); }
#home_page { background-image: url('/images/bg.jpg'); }
/* ... */
/* aliasy aby fungoval pôvodný vzhľad aj na nových ID */
#appHeader { background: #00003c; color:#fff; position:relative; overflow:hidden; }
#appMenu   { background: #00003c; }
#appCenter, .layout-panel-center .panel-body { background:#fff; }


/* ===== HEADER ===== */
#header_bar {
    width: 100%;
    height: 70px;
    background: #00003c;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: IstaFont;
}

/* LOGO obrázok */
#logo_bar {
    position: absolute;
    left: 50px;
    top: 5px;
    width: 120px;
    height: 60px;
    background-image: url('/images/ista_logo_big_20240924.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

/* Text vedľa loga */
#logo_text {
    position: absolute;
    top: 35px;
    left: 170px;
    color: #ffffff;
    font-family: IstaFont;
    font-size: large;
}

/* USER MENU VPRAVO */
#user_menu_bar {
    position: absolute;
    right: 15px;
    top: 20px;
    color: #ffffff;
}

#user_menu_bar span {
   background-color: #00003C;
   font-size: 16px;
   padding: 2px 8px;
   margin-right: 8px;
   border: 1px solid #00001C;
   border-radius: 2px;
}