/* /Components/Layout/MainLayout.razor.rz.scp.css */
a[b-7uza94jjga] {cursor:pointer;}

/* Sticky header */
header.sticky-header[b-7uza94jjga] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

header.sticky-header.scrolled[b-7uza94jjga] {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Hamburger menu button */
.hamburger[b-7uza94jjga] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.hamburger:hover[b-7uza94jjga] {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger:active[b-7uza94jjga] {
    transform: scale(0.95);
}

.hamburger span[b-7uza94jjga] {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1)[b-7uza94jjga] {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2)[b-7uza94jjga] {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3)[b-7uza94jjga] {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main navigation */
.main-nav[b-7uza94jjga] {
    display: block;
}

.main-nav .nav[b-7uza94jjga] {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Mobile styles */
@media (max-width: 991px) {
    .hamburger[b-7uza94jjga] {
        display: flex;
    }

    .main-nav[b-7uza94jjga] {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active[b-7uza94jjga] {
        right: 0;
    }

    .main-nav .nav[b-7uza94jjga] {
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 20px;
        margin-top: 0;
    }

    .main-nav .nav li[b-7uza94jjga] {
        width: 100%;
        margin: 0;
        
        .px-2 {
            padding-left: 1.7rem !important;
        }
    }

    .main-nav .nav li a[b-7uza94jjga] {
        display: block;
        padding: 15px 25px !important;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s ease;
    }

    .main-nav .nav li a:hover[b-7uza94jjga] {
        background-color: #f8f8f8;
    }

    .main-nav .nav li a.gold[b-7uza94jjga] {
        margin: 15px 25px !important;
        text-align: center;
        border-bottom: none;
    }

    .main-nav .nav li a.fb[b-7uza94jjga] {
        width: auto;
        height: auto;
        background-position: left 25px center;
        background-size: 24px;
        padding-left: 60px !important;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav .nav li a.fb[b-7uza94jjga]::before {
        content: "Facebook";
        font-size: 16px;
    }

    /* Vylepšené scrollování na mobilních zařízeních */
    .main-nav[b-7uza94jjga]::-webkit-scrollbar {
        width: 6px;
    }

    .main-nav[b-7uza94jjga]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .main-nav[b-7uza94jjga]::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .main-nav[b-7uza94jjga]::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
}

/* Overlay pro mobilní menu */
.menu-overlay[b-7uza94jjga] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-overlay.active[b-7uza94jjga] {
    display: block;
    opacity: 1;
}

@media (min-width: 992px) {
    .menu-overlay[b-7uza94jjga] {
        display: none !important;
    }
}

footer .container:first-of-type h4[b-7uza94jjga] {
    font-size:18px;
    font-weight: bold;
}

footer .container:first-of-type p[b-7uza94jjga] {
    line-height: 1.6;
    color: #444;
}

#blazor-error-ui[b-7uza94jjga] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7uza94jjga] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.fb[b-7uza94jjga] {
    display:inline-block;
    background: url('/img/facebook.png') no-repeat;
    background-size: 60%;
    background-position: center;
    margin-top: 8px;
    width: 35px;
    height: 35px;
    transition: opacity 0.15s ease;
}

.fb:hover[b-7uza94jjga] {
    opacity: 0.9;
}

/* /Components/Pages/AdnpSyndrom/Breadcrumb.razor.rz.scp.css */
.home[b-xh2mgn4fo9] {border:0;}
/* /Components/Pages/AdnpSyndrom/Diagnostika.razor.rz.scp.css */
.lf[b-61j0e9z061] {
    float: left;
    margin:20px 13px 0 0;
    width:22%;
}

[b-61j0e9z061] img {
    filter: grayscale(100%);
}
/* /Components/Pages/AdnpSyndrom/Projevy.razor.rz.scp.css */
.lf[b-ixka1te1zd] {
    float: left;
    margin:20px 13px 0 0;
    width:22%;
}
/* /Components/Pages/AdnpSyndrom/Submenu.razor.rz.scp.css */
.public[b-35vrawngs5] {margin-bottom: 0; color: #999; font-weight: bold;}
ol[b-35vrawngs5] {margin-left: -5px;}
a.frm[b-35vrawngs5] {display: block; border: #f5f5f5 1px solid; margin-bottom: 20px; padding: 10px; box-shadow: 0 0 10px #eee}
a.frm h3[b-35vrawngs5] {margin-top: 0;}
a.frm p[b-35vrawngs5] {margin-bottom: 0;}
a.frm.clinician[b-35vrawngs5]{}
/* /Components/Pages/AdnpSyndrom/Terapie.razor.rz.scp.css */
.lf[b-98lqa06txg] {
    float: left;
    margin:20px 13px 0 0;
    width:22%;
}

figure img[b-98lqa06txg] {
    filter: grayscale(100%);
}
/* /Components/Pages/AdnpSyndrom/Vyzkum.razor.rz.scp.css */
.status[b-1uz27skmko] {color:goldenrod; margin-top: -10px;}
/* /Components/Pages/Clanky/Autori.razor.rz.scp.css */
.photo[b-w6zdkjs0a8] {width:70px; float: left; margin: 23px 20px 0 0; border-radius: 100px;}
h2[b-w6zdkjs0a8] {margin-bottom:0;}
/* /Components/Pages/Clanky/Detail.razor.rz.scp.css */
.side img[b-o70fq88uo0] {
    width:30px; border-radius: 50px; margin: 2px 8px 0 0px; float: left;
}
.side p[b-o70fq88uo0]
{
    line-height: 1.6;
    color:#444;
    padding-top: 4px;
    font-size:14px;
}

.side .published[b-o70fq88uo0]
{
    border-bottom:#f5f5f5 3px solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.upd[b-o70fq88uo0] {display: block; margin-top: 10px;}

[b-o70fq88uo0] .sourcelink {
    padding: 0 1px;
    border-radius: 2px;
}

[b-o70fq88uo0] .sourcelink a {
    border:0;
    color:goldenrod;
    background: #eee;
    font-weight: bold;
    padding:0 2px;
    border-radius: 3px;
}

[b-o70fq88uo0] .sources ul li {list-style-type: none; color: #bbb;}

[b-o70fq88uo0] .doi p {font-size:11px; margin-top: 20px;}
/* /Components/Pages/Clanky/Dvo2025.razor.rz.scp.css */
h1[b-06f7i1abia] {
    text-shadow: 2px 2px 35px darkviolet;
}

.side img[b-06f7i1abia] {
    width:50px; border-radius: 50px; margin: 3px 8px 0 0px; float: left;
}
.side p[b-06f7i1abia]
{
    line-height: 1.6;
    color:#444;
    padding-top: 4px;
    font-size:15px;
}

.dvo[b-06f7i1abia] {margin-bottom: 20px; border-radius: 5px;}
/* /Components/Pages/Clanky/Index.razor.rz.scp.css */
h2[b-206rcnewy5] {margin-bottom: 0;}
.col-md-4 h2[b-206rcnewy5] {margin-bottom: 10px;}

/*.articles {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    grid-gap: 20px;*/
/*}*/

.article[b-206rcnewy5] {
    margin-bottom: 20px;
    box-sizing: border-box;
}

.article .in[b-206rcnewy5] {
    border-left:5px solid rgb(250, 242, 226);
    padding-left: 15px;
}

.article .extra[b-206rcnewy5] {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #FAF2E2;
    border:0;
}

.article h2[b-206rcnewy5] {
    margin-top: 0;
}
/* /Components/Pages/Clenstvi.razor.rz.scp.css */
.fb[b-1rsqo0orpa] {color: #1877F2; font-weight: bold;}
/* /Components/Pages/Dary/Potvrzeni.razor.rz.scp.css */
h1[b-hc9fzfdqnm] {text-shadow: none; text-align: center; margin-top: 30px; margin-bottom: 30px;}
em[b-hc9fzfdqnm] {font-weight: bold; text-decoration: none; font-style: normal; font-size:20px;}
.obdarovany[b-hc9fzfdqnm] {margin-bottom: 0; padding-bottom: 0;}
.parafin[b-hc9fzfdqnm] {position: relative;}
.parafin img[b-hc9fzfdqnm] {position: absolute; bottom: 0; left: 230px; width: 150px;}
.prnt[b-hc9fzfdqnm]{width:600px; margin: auto;}

.down[b-hc9fzfdqnm] {position: absolute; top:30px; right: 20px;}
.down a[b-hc9fzfdqnm] { background: #F40F02; color:#fff; padding:10px 20px; border-radius: 10px;}

@media print {
    .down[b-hc9fzfdqnm] {
        display: none;
    }
}
/* /Components/Pages/Dary/Zadost.razor.rz.scp.css */
table[b-w4co8vj0jb] {margin-bottom: 20px;}
table tr td[b-w4co8vj0jb] {padding: 4px 0; border-bottom: #f5f5f5 3px solid;}
table tr td:nth-child(1)[b-w4co8vj0jb] {width:260px; font-weight: bold;}
table tr td:nth-child(2)[b-w4co8vj0jb] {}
table tr td:nth-child(3)[b-w4co8vj0jb] { padding-left: 20px; border-bottom: 0; font-size:90%; color:#f00;}

[b-w4co8vj0jb] input {border:0; background: #f5f5f5; padding: 2px 4px;}
.alert p:last-of-type[b-w4co8vj0jb] {margin-bottom: 0; padding-bottom: 0;}
/* /Components/Pages/Home.razor.rz.scp.css */
h1[b-evvxzkr3py] {
    line-height: 1.5;
    margin-bottom: 30px;
}

.help-us[b-evvxzkr3py] {
    background: #fff;
    padding: 10px 5px 10px 15px;
    box-shadow: 0 0 10px #eee;
}

.connect[b-evvxzkr3py] {
    background: #faf3e2;
    padding: 10px 5px 10px 15px;
    box-shadow: 0 0 10px #eee;
}

.trial[b-evvxzkr3py] {
    background: #d5e1ed;
    padding: 10px 5px 10px 15px;
    box-shadow: 0 0 10px #eee;
    border-radius: 5px;
}

.trial a[b-evvxzkr3py] {}

.cases[b-evvxzkr3py] {margin: 25px 4px 10px 4px; box-sizing: border-box; width:99%;}

.col-md-4 h2 span[b-evvxzkr3py] {font-size:19px;}

.story[b-evvxzkr3py] {margin:0 10%; text-align: center; box-sizing: border-box;}
.story blockquote[b-evvxzkr3py] {padding-left: 0; color: darkgoldenrod;}
[b-evvxzkr3py] .partners img {height: 30px;}
[b-evvxzkr3py] .partners a {border: 0; margin: 0 10px;}
/* /Components/Pages/Kontakt.razor.rz.scp.css */
.person[b-lyymiu6nbz]  img {
    float: left; width:100px; margin-right: 20px; border-radius: 150px;
    margin-top: 30px;
}
/* /Components/Pages/Lide/MiroslavHolec.razor.rz.scp.css */
.subtitle[b-zcrevke1go] {
    font-size: 17px;
    color: goldenrod;
    margin-bottom: 5px;
}

.lead-text[b-zcrevke1go] {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-card[b-zcrevke1go] {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 10px;
}

.contact-card[b-zcrevke1go]  h3 {
    margin-top: 5px;
    margin-bottom: 10px;
}

.role-list[b-zcrevke1go]  li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.role-list[b-zcrevke1go]  .desc {
    display: block;
    color: #777;
    font-size: 14px;
    margin-top: 2px;
}
/* /Components/Pages/Onas.razor.rz.scp.css */
p strong.big[b-vx6ik683bf] {font-size:22px; font-weight: normal; display: block; margin-bottom: 20px;}
.story[b-vx6ik683bf] {position: relative}
.story img[b-vx6ik683bf] {position: absolute; bottom: -10px; right: 130px; width:85px; }
.family[b-vx6ik683bf] {width:100%; margin-top: 60px; border-radius: 20px; }

@media (max-width: 900px) {
    .story img[b-vx6ik683bf] {display:none; }
}
/* /Components/Pages/Podpora.razor.rz.scp.css */
.givt[b-hdgkkq4w42] { margin-top: 30px; background: #f5f5f5; padding: 10px; border-radius: 10px;}
.givt h3[b-hdgkkq4w42] {margin-top: 0; font-weight: bold; }
.givt h3 i[b-hdgkkq4w42] { color: green;}
.givt .supp a[b-hdgkkq4w42] {background: green; display: inline-block;  border:0; margin-bottom: 10px; line-height: 1.8; color:#fff; padding: 3px 8px; border-radius: 2px;}
.givt .supp a:hover[b-hdgkkq4w42] {opacity: 0.9;}

.paypal[b-hdgkkq4w42] {border:0;}
.paypal img[b-hdgkkq4w42] {max-width:140px;}
.paypal img:hover[b-hdgkkq4w42] {opacity: 0.8;}
/* /Components/Pages/Pribehy.razor.rz.scp.css */
.stories[b-01y31oqtr8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    column-gap: 20px;
    row-gap: 20px;
    width:100%;
}

.story[b-01y31oqtr8] {
    background: #FAF2E2;
    border-radius: 10px;
    text-align: center;
}

.story .cont[b-01y31oqtr8] {
    padding: 10px;
}

.story .cont h2[b-01y31oqtr8] {
    margin: 0 0 10px 0;
}

[b-01y31oqtr8] img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    width: 100%;

    transition: filter .3s ease-in-out;
}

[b-01y31oqtr8] img:hover {
    filter: grayscale(0%);
}

h1.dp[b-01y31oqtr8] {margin-top: 30px;}
p small[b-01y31oqtr8] {background: #f5f5f5; padding: 2px 5px; font-weight: bold;
    border:#eee 1px solid; margin-right: 4px;}

.map[b-01y31oqtr8] {margin-top: 20px;}
.map[b-01y31oqtr8]  img {border-radius: 10px;}
/* /Components/Pages/PribehyDeti/Lukasek.razor.rz.scp.css */
.after[b-xp2w4wdnkz] {
    display:inline-block;
    border-top:#f5f5f5 5px solid;
    padding-top:5px;
}
/* /Components/Pages/Projekty/Index.razor.rz.scp.css */
h2 i[b-n5dms152dj] {color: #DAA520;}
h2.np[b-n5dms152dj] {margin-top: 0;}
h3[b-n5dms152dj] {margin-bottom: 0; font-weight: bold;}
h4[b-n5dms152dj] {font-size: 15px; font-weight: bold; color: #DAA520; margin-top: 5px;}
p span[b-n5dms152dj] {
    display:block;
    color: #DAA520;
    font-size:14px;
}
.davunetide[b-n5dms152dj] {background: #FAF2E2; padding:20px; border-radius: 10px;}
.davunetide h2[b-n5dms152dj] {margin-top: 10px;}

.eu[b-n5dms152dj] {border-left: #faf2e2 5px solid; padding-left: 15px;}
/* /Components/Pages/Projekty/ProjektKomplexniPodporaDeti.razor.rz.scp.css */
/* /Components/Pages/Projekty/ScreeningAdnp.razor.rz.scp.css */
.research[b-tknfhftdjx] {border-left: #faf2e2 5px solid; padding-left: 15px;}
/* /Components/Pages/Wiki/Komunita.razor.rz.scp.css */
.wiki-community[b-wwnglpd7cx] {
    max-width: 980px;
    margin: 0 auto;
}

.wiki-community-panel[b-wwnglpd7cx] {
    background: #fff;
    border: 1px solid #ece5d8;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(67, 52, 26, 0.04), 0 12px 34px rgba(67, 52, 26, 0.06);
    padding: clamp(22px, 4vw, 36px);
}

.wiki-community h1[b-wwnglpd7cx],
.wiki-community p[b-wwnglpd7cx] {
    margin-top: 0;
}

.wiki-community-header[b-wwnglpd7cx] {
    border: 0;
    box-shadow: none;
    margin-bottom: 28px;
}

.wiki-community-header h1[b-wwnglpd7cx] {
    color: #222;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.wiki-community-header p:last-child[b-wwnglpd7cx] {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
}

.wiki-community-kicker[b-wwnglpd7cx] {
    color: #7a5c2e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.community-link-grid[b-wwnglpd7cx] {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-link-card[b-wwnglpd7cx] {
    align-items: center;
    background: #fffdf9;
    border: 1px solid #ece5d8;
    border-radius: 14px;
    color: #333;
    display: grid;
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 138px;
    padding: 22px;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.community-link-card:hover[b-wwnglpd7cx] {
    border-color: #d8c7a4;
    box-shadow: 0 16px 34px rgba(67, 52, 26, 0.10);
    color: #333;
    transform: translateY(-3px);
}

.community-link-icon[b-wwnglpd7cx] {
    align-items: center;
    background: linear-gradient(135deg, #f6f1e8, #efe6d4);
    border-radius: 12px;
    color: #7a5c2e;
    display: inline-flex;
    font-size: 22px;
    height: 52px;
    justify-content: center;
    width: 52px;
    transition: transform 180ms ease;
}

.community-link-card:hover .community-link-icon[b-wwnglpd7cx] {
    transform: scale(1.06);
}

.community-link-content[b-wwnglpd7cx] {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.community-link-content strong[b-wwnglpd7cx] {
    color: #222;
    font-size: 19px;
    line-height: 1.25;
}

.community-link-content span[b-wwnglpd7cx] {
    color: #666;
    line-height: 1.45;
}

.community-link-card > .fa-light[b-wwnglpd7cx] {
    color: #9a855f;
    font-size: 18px;
}

@media (max-width: 860px) {
    .community-link-grid[b-wwnglpd7cx] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .community-link-card[b-wwnglpd7cx] {
        align-items: flex-start;
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 0;
        padding: 18px;
    }

    .community-link-card > .fa-light[b-wwnglpd7cx] {
        display: none;
    }
}
/* /Components/Pages/Wiki/Prihlaseni.razor.rz.scp.css */
.login-page[b-dlozezlb1m] {
    display: grid;
    place-items: center;
    min-height: 58vh;
}

.login-panel[b-dlozezlb1m] {
    width: min(100%, 420px);
    border: 1px solid #eadfca;
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.login-panel h1[b-dlozezlb1m],
.login-panel label[b-dlozezlb1m],
.login-panel p[b-dlozezlb1m] {
    margin-top: 0;
}

.login-links[b-dlozezlb1m] {
    margin-bottom: 0;
    padding-top: 18px;
}
/* /Components/Pages/Wiki/ResetHesla.razor.rz.scp.css */
.login-page[b-rtnlhwe99t] {
    display: grid;
    place-items: center;
    min-height: 58vh;
    padding: 24px 16px;
}

.login-panel[b-rtnlhwe99t] {
    width: min(100%, 440px);
    border: 1px solid #eadfca;
    border-radius: 8px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.login-panel h1[b-rtnlhwe99t],
.login-panel label[b-rtnlhwe99t],
.login-panel p[b-rtnlhwe99t] {
    margin-top: 0;
}

.login-panel h1[b-rtnlhwe99t] {
    margin-bottom: 10px;
}

.reset-icon[b-rtnlhwe99t] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #f4eddd;
    color: #7a5c2e;
    font-size: 20px;
    margin-bottom: 16px;
}

.reset-lead[b-rtnlhwe99t] {
    color: #6f685c;
    line-height: 1.55;
    margin-bottom: 22px;
}

.login-links[b-rtnlhwe99t] {
    margin-bottom: 0;
    padding-top: 18px;
}

.login-links a[b-rtnlhwe99t] {
    color: #7a5c2e;
}

.login-links a:hover[b-rtnlhwe99t] {
    color: #5a3e18;
}
/* /Components/Pages/Wiki/ResetHeslaPotvrzeni.razor.rz.scp.css */
.login-page[b-w0t6nloehk] {
    display: grid;
    place-items: center;
    min-height: 58vh;
    padding: 24px 16px;
}

.login-panel[b-w0t6nloehk] {
    width: min(100%, 440px);
    border: 1px solid #eadfca;
    border-radius: 8px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.login-panel h1[b-w0t6nloehk],
.login-panel label[b-w0t6nloehk],
.login-panel p[b-w0t6nloehk] {
    margin-top: 0;
}

.login-panel h1[b-w0t6nloehk] {
    margin-bottom: 10px;
}

.reset-icon[b-w0t6nloehk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #f4eddd;
    color: #7a5c2e;
    font-size: 20px;
    margin-bottom: 16px;
}

.reset-lead[b-w0t6nloehk] {
    color: #6f685c;
    line-height: 1.55;
    margin-bottom: 22px;
}

.login-links[b-w0t6nloehk] {
    margin-bottom: 0;
    padding-top: 18px;
}

.login-links a[b-w0t6nloehk] {
    color: #7a5c2e;
}

.login-links a:hover[b-w0t6nloehk] {
    color: #5a3e18;
}
/* /Components/Pages/Wiki/WikiEdit.razor.rz.scp.css */
.wiki-editor[b-65dk71k10i] {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid #ece5d8;
    border-radius: 8px;
    background: #fff;
    padding: clamp(18px, 4vw, 34px);
}

.wiki-editor h1[b-65dk71k10i],
.wiki-editor h2[b-65dk71k10i],
.wiki-editor label[b-65dk71k10i],
.wiki-editor p[b-65dk71k10i] {
    margin-top: 0;
}

[b-65dk71k10i] .wiki-textarea {
    min-height: 300px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    line-height: 1.6;
}

.wiki-markdown-toolbar[b-65dk71k10i] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    border: 1px solid #ece5d8;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #fbfaf7;
    padding: 8px;
}

.wiki-markdown-toolbar button[b-65dk71k10i] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #5b5144;
}

.wiki-markdown-toolbar button:hover[b-65dk71k10i],
.wiki-markdown-toolbar button:focus-visible[b-65dk71k10i] {
    border-color: #dccfbc;
    background: #f1eadc;
    color: #2d261f;
}

.wiki-toolbar-divider[b-65dk71k10i] {
    width: 1px;
    height: 24px;
    background: #e2d7c6;
    margin: 0 2px;
}

[b-65dk71k10i] .wiki-markdown-toolbar + .wiki-textarea {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.wiki-help[b-65dk71k10i] {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

.wiki-markdown-help[b-65dk71k10i] {
    border: 1px solid #ece5d8;
    border-radius: 8px;
    background: #fbfaf7;
    padding: 10px 14px;
}

.wiki-markdown-help summary[b-65dk71k10i] {
    cursor: pointer;
    font-weight: bold;
}

.wiki-markdown-help-grid[b-65dk71k10i] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin-top: 14px;
}

.wiki-markdown-help h2[b-65dk71k10i] {
    font-size: 15px;
    margin-bottom: 6px;
}

.wiki-markdown-help ul[b-65dk71k10i] {
    margin: 0;
    padding-left: 18px;
}

.wiki-markdown-help li[b-65dk71k10i] {
    margin-bottom: 4px;
}

.wiki-markdown-help code[b-65dk71k10i] {
    background: #f1eadc;
    border-radius: 4px;
    padding: 1px 5px;
}

.wiki-current-attachments[b-65dk71k10i] {
    margin-top: 22px;
}

.wiki-editor-actions[b-65dk71k10i] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.wiki-editor-actions a.btn[b-65dk71k10i] {
    border-width: 1px;
    border-style: solid;
}

@media (max-width: 760px) {
    .wiki-markdown-help-grid[b-65dk71k10i] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Wiki/WikiIndex.razor.rz.scp.css */
.wiki-home[b-0yetckfbzd] {
    max-width: 900px;
    margin: 0 auto;
}

.wiki-home h1[b-0yetckfbzd],
.wiki-home h2[b-0yetckfbzd],
.wiki-home p[b-0yetckfbzd] {
    margin-top: 0;
}

.wiki-home-section[b-0yetckfbzd] {
    margin-top: 44px;
}

.wiki-home-section h2[b-0yetckfbzd] {
    position: relative;
    margin-bottom: 18px;
    padding-left: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #2f2a22;
}

/* Akcentní pruh před nadpisem sekce */
.wiki-home-section h2[b-0yetckfbzd]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #c8a86b, #7a5c2e);
}

.wiki-home-section-header[b-0yetckfbzd] {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wiki-home-section-header h2[b-0yetckfbzd] {
    margin-bottom: 0;
}

.wiki-search[b-0yetckfbzd] {
    align-items: stretch;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.wiki-search[b-0yetckfbzd]  .form-control {
    min-height: 48px;
    border-radius: 11px;
    border: 1px solid #ece5d8;
    background: #fffdf9;
    padding: 0 16px;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.wiki-search[b-0yetckfbzd]  .form-control:focus {
    border-color: #c8a86b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(200, 168, 107, 0.16);
}

.wiki-search .btn[b-0yetckfbzd] {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    white-space: nowrap;
    border-radius: 11px;
    padding: 0 20px;
    transition: transform 160ms ease, box-shadow 200ms ease;
}

.wiki-search .btn:hover[b-0yetckfbzd] {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(122, 92, 46, 0.22);
}

.wiki-search-clear[b-0yetckfbzd] {
    padding: 0;
    text-decoration: none;
}

@media (max-width: 700px) {
    .wiki-home-section-header[b-0yetckfbzd],
    .wiki-search[b-0yetckfbzd] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/Wiki/WikiPageContent.razor.rz.scp.css */
.wiki-page[b-m8axesw0vo] {
    max-width: 880px;
    margin: 0 auto;
}

.wiki-page h1[b-m8axesw0vo],
.wiki-page h2[b-m8axesw0vo],
.wiki-page p[b-m8axesw0vo] {
    margin-top: 0;
}

.wiki-page-header[b-m8axesw0vo] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ece5d8;
}

.wiki-page-header h1[b-m8axesw0vo] {
    margin-bottom: 6px;
    font-size: clamp(30px, 4.5vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #2f2a22;
}

.wiki-updated[b-m8axesw0vo] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #97907f;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 0;
}

.wiki-updated[b-m8axesw0vo]::before {
    content: "\f017"; /* fa clock */
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 300;
    font-size: 12px;
}

.wiki-actions[b-m8axesw0vo] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.wiki-actions[b-m8axesw0vo]  .btn {
    border-radius: 10px;
    transition: transform 160ms ease, box-shadow 200ms ease, background-color 160ms ease, border-color 160ms ease;
}

.wiki-actions[b-m8axesw0vo]  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(67, 52, 26, 0.12);
}

.btn-favorite-active[b-m8axesw0vo] {
    background-color: rgba(200, 168, 107, 0.18);
    border-color: #c8a86b;
    color: #5a3e18;
}

.wiki-content[b-m8axesw0vo] {
    --wiki-content-padding: clamp(22px, 4vw, 40px);
    border: 1px solid #ece5d8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(67, 52, 26, 0.04), 0 12px 34px rgba(67, 52, 26, 0.06);
    padding: var(--wiki-content-padding);
    font-size: 16.5px;
    line-height: 1.75;
    color: #3a342b;
}

.wiki-content[b-m8axesw0vo]  h2,
.wiki-content[b-m8axesw0vo]  h3 {
    letter-spacing: -0.01em;
    color: #2f2a22;
}

.wiki-content[b-m8axesw0vo]  h2 {
    margin-top: 2em;
    padding-bottom: 0.35em;
    border-bottom: 1px solid #f0eadf;
}

.wiki-content[b-m8axesw0vo]  img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.wiki-content[b-m8axesw0vo]  table {
    width: 100%;
    margin-bottom: 18px;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #ece5d8;
}

.wiki-content[b-m8axesw0vo]  th {
    background: #f6f1e8;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #ddd8ce;
    padding: 10px 14px;
}

.wiki-content[b-m8axesw0vo]  td {
    border-top: 1px solid #ece5d8;
    padding: 10px 14px;
    vertical-align: top;
}

.wiki-content[b-m8axesw0vo]  tr:nth-child(even) td {
    background: #fdfaf5;
}

.wiki-content[b-m8axesw0vo]  blockquote {
    font-style: normal;
    text-align: left;
    margin: 1.4rem 0;
    padding: 0.9rem 1.2rem 0.9rem 1.3rem;
    border-left: 3px solid #c8a86b;
    background: linear-gradient(90deg, #faf6ee, #fdfbf6);
    border-radius: 0 10px 10px 0;
    color: #5a5347;
}

.wiki-content[b-m8axesw0vo]  blockquote p {
    margin: 0;
}

.wiki-content[b-m8axesw0vo]  code {
    background: #f6f1e8;
    border-radius: 4px;
    padding: 1px 5px;
}

.wiki-content[b-m8axesw0vo]  pre {
    background: #f6f1e8;
    border-radius: 6px;
    padding: 14px;
    overflow-x: auto;
}

.wiki-content[b-m8axesw0vo]  a,
.wiki-content[b-m8axesw0vo]  .wiki-link {
    color: #7a5c2e;
    text-decoration: underline;
    text-decoration-color: rgba(200, 168, 107, 0.55);
    text-underline-offset: 3px;
    transition: color 160ms ease, text-decoration-color 160ms ease;
}

.wiki-content[b-m8axesw0vo]  a:hover,
.wiki-content[b-m8axesw0vo]  .wiki-link:hover {
    color: #5a3e18;
    text-decoration-color: #7a5c2e;
}

.wiki-content[b-m8axesw0vo]  .wiki-missing-link {
    color: #7a5c2e;
    text-decoration: underline;
    text-decoration-color: #c8a86b;
    text-underline-offset: 2px;
}

.wiki-content[b-m8axesw0vo]  .wiki-missing-link::after {
    content: " +";
    font-weight: bold;
    color: #9a6a00;
}

.wiki-content[b-m8axesw0vo]  .wiki-missing-text {
    color: #777;
    border-bottom: 1px dashed #c8c8c8;
}

.wiki-attachments[b-m8axesw0vo] {
    border-top: 1px solid #ece5d8;
    background: #fbf7ef;
    border-radius: 0 0 16px 16px;
    margin: 28px calc(var(--wiki-content-padding) * -1) calc(var(--wiki-content-padding) * -1);
    padding: 20px var(--wiki-content-padding) 22px;
}

.wiki-attachments h2[b-m8axesw0vo] {
    font-size: 18px;
    margin-bottom: 10px;
}

.wiki-attachments ul[b-m8axesw0vo] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wiki-attachments li[b-m8axesw0vo] {
    align-items: center;
    border-bottom: 1px solid #eadfce;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    transition: padding-left 180ms ease;
}

.wiki-attachments li:hover[b-m8axesw0vo] {
    padding-left: 4px;
}

.wiki-attachments span[b-m8axesw0vo] {
    color: #777;
    display: block;
    font-size: 14px;
}

.wiki-attachments li:last-child[b-m8axesw0vo] {
    border-bottom: 0;
    padding-bottom: 0;
}

.wiki-attachment-link[b-m8axesw0vo] {
    min-width: 0;
}

.wiki-attachment-actions[b-m8axesw0vo] {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.wiki-list[b-m8axesw0vo] {
    background: #fff;
    border: 1px solid #ece5d8;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(67, 52, 26, 0.04), 0 8px 24px rgba(67, 52, 26, 0.05);
    padding: 18px 22px;
}

@media (max-width: 700px) {
    .wiki-page-header[b-m8axesw0vo] {
        display: block;
    }

    .wiki-actions[b-m8axesw0vo] {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .wiki-attachments li[b-m8axesw0vo] {
        align-items: flex-start;
        flex-direction: column;
    }

    .wiki-attachment-actions[b-m8axesw0vo] {
        justify-content: flex-start;
    }
}
/* /Components/Shared/DetiTablo.razor.rz.scp.css */
.deti[b-m0pg4d8muy] {display: flex; width: 100%; gap:2%;}
.deti .dt[b-m0pg4d8muy] {flex: 1; border: 1px solid #ccc; padding:5px; box-sizing: border-box;}
.deti .dt img[b-m0pg4d8muy] {width:100%;}
/* /Components/Shared/Donate.razor.rz.scp.css */
iframe[b-cet93s4dve] {width:100%; height: 420px; overflow: hidden; border:0;}
/* /Components/Shared/Dvo2026.razor.rz.scp.css */
[b-gxbulzo7mk] img {max-width:100%; border-radius: 10px; margin-top: 6px;}
h4[b-gxbulzo7mk] {font-size:16px; color:darkgoldenrod}
h2[b-gxbulzo7mk] {margin-top:0}
/* /Components/Shared/Loading.razor.rz.scp.css */
#pageloading[b-q7y46lsrmp] {display:none;}

.loader-line[b-q7y46lsrmp] {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 5px;
    overflow: hidden;
    background-color: #ddd;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line[b-q7y46lsrmp]:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 5px;
    width: 40%;
    background-color: goldenrod;
    -webkit-animation: lineAnim 2s linear infinite;
    -moz-animation: lineAnim 2s linear infinite;
    animation: lineAnim-b-q7y46lsrmp 2s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim-b-q7y46lsrmp {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}
/* /Components/Shared/TiskovkaHomepage.razor.rz.scp.css */
[b-ymyaxhr573] img {max-width:100%; border-radius: 10px;}
h4[b-ymyaxhr573] {font-size:16px; color:darkgoldenrod}
h2[b-ymyaxhr573] {margin-top:0}
/* /Components/Shared/WikiTree.razor.rz.scp.css */
.wiki-tree[b-ya1tn4hdsc] {
    margin: 8px 0 20px;
}

.wiki-tree h2[b-ya1tn4hdsc] {
    color: #777;
    font-size: 13px;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.wiki-tree ul[b-ya1tn4hdsc] {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
/* /Components/Shared/WikiTreeNode.razor.rz.scp.css */
.wiki-tree-node a[b-twu96m1lcv] {
    display: block;
    border: 0;
    border-radius: 6px;
    color: #333;
    line-height: 1.4;
    padding: 6px 8px;
}

.wiki-tree-node a:hover[b-twu96m1lcv] {
    background: #f3efe4;
    color: darkgoldenrod;
}

.wiki-tree-node ul[b-twu96m1lcv] {
    list-style: none;
    margin: 0;
    padding-left: 14px;
}
