/*
 * Soubor: base.css
 * Ucel: Zakladni globalni typografie a scrollbar pravidla aplikace
 * Hranice: Neobsahuje styly konkretnich stranek ani modulu
 *
 * @version 1.0.0 2026-07-25
 * @changelog 1.0.0 2026-07-25
 *  - zakladni pravidla oddelena z puvodniho screen.css
 *
 * @version 1.0.1 2026-08-04
 * @changelog 1.0.1 2026-08-04
 *  - nativni scrollbar sipky nemeni vzhled pri hoveru ani stisku
 *
 * @version 1.0.2 2026-08-04
 * @changelog 1.0.2 2026-08-04
 *  - odstranen standardni scrollbar-color prepisujici WebKit stavy
 *  - roh vodorovneho a svisleho scrollbaru je pruhledny
 */

/*Obecne styly*/
body{
    font-family: var(--font-family);
}

html:has(.obal_akce_cteniKnihy),
body:has(.obal_akce_cteniKnihy){
    height: 100%;
    overflow: hidden;
}

body:has(.obal_akce_cteniKnihy) *{
    scrollbar-width: thin;
}

body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar{
    width: 8px;
    height: 8px;
}

body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
}

body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0.08);
}

body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-button,
body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-button:hover,
body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-button:active{
    background-color: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    filter: none;
    transition: none;
    animation: none;
}

body:has(.obal_akce_cteniKnihy) *::-webkit-scrollbar-corner{
    background: transparent;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 80%;
    letter-spacing: 0.1rem;
}
/*Konec obecnych stylu*/
