﻿@font-face {
  font-family: "NotoSans";
  src: url("../font/NotoSans-Regular.ttf");
}

:root {
    --table-bg-color: #fff;
    --table-bg-alt-color: #f3f3f3;
    --table-text-color: #333;
    --table-border-color: #dee2e6;
    --table-header-text-color: #333;
    --input-placeholder-text-color: #a0a0a0;
    --table-row-bg-color: #fbfbfb;
    --table-header-bg-color: #EAE9E9;
    --font-family: "NotoSans";
}




body, html {
    font-family: NotoSans;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1 {
    display: block;
    font-size: 1.75em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h3 {
    display: block;
    font-size: 1.25em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

p1 {
    display: block;
    margin-top: 1.12em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

p2 {
    display: block;
    margin-top: 1.12em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: regular;
}

p3 {
    display: block;
    margin-top: 1em;
    margin-bottom: 1.25em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

/*Poznamka*/
p4 {
    display: block;
    margin-top: 1em;
    margin-bottom: 1.25em;
    margin-left: 0;
    margin-right: 0;
    font-weight: regular;
}

.psworkingarea-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    flex-grow: 1;
    overflow-y: auto;
    z-index: 0;

    padding: 20px;
}

.psworkingarea-fullwith-root {
    width: 100%;
    align-items: center;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 0;
}

.pslistarea-root {
    max-width: 1120px;
    width: 100%;
}

.psmaincontent-root {
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}

.pscontainer-center {
    width: 100%;
    height: 100vh;
    background-color: #eae9e9;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
}


