/* /Components/Bank/BankIcons.razor.rz.scp.css */
.bank-tile[b-xcmqyoq0fy] {
    width: 100%; /* Zajistí, že dlaždice se správně přizpůsobí */
    max-width: 140px; /* Zůstane na správné velikosti */
    height: 80px; /* Výška dlaždice */
    border-radius: 10px; /* Zaoblené rohy */
    border: 1px solid #d1d1d1; /* Jemný šedý okraj */
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Jemný stín */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    overflow: hidden; /* Zabrání přesahování obsahu */
}

/* Oprava obrázků uvnitř dlaždic */
.bank-icon[b-xcmqyoq0fy] {
    max-width: 80%; /* Omezí šířku obrázků, aby nevyčnívaly */
    max-height: 70%; /* Omezí výšku obrázků */
    object-fit: contain; /* Zajistí správné škálování */
}

/* Zvýraznění tlačítka při najetí myší */
.bank-tile:hover[b-xcmqyoq0fy] {
    border-color: #b0b0b0; /* Trochu tmavší šedá */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* O něco výraznější stín */
    transform: scale(1.03);
}

/* Oprava gridu */
.grid-container[b-xcmqyoq0fy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Přizpůsobení dle prostoru */
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%; /* Zajistí, že grid bude mít celou šířku dostupnou na stránce */
    max-width: 100%; /* Zabrání zbytečnému zmenšení */
    padding: 10px;
}


/* Responzivní úprava pro menší displeje */
@media (max-width: 500px) {
    .grid-container[b-xcmqyoq0fy] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Pevně dvě dlaždice na řádek */
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 200px) {
    .grid-container[b-xcmqyoq0fy] {
        grid-template-columns: repeat(1, 1fr); /* 1 dlaždice na menších displejích */
    }
}
/* /Components/Layouts/EmptyLayout.razor.rz.scp.css */
.page[b-sl4upl6vkn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-sl4upl6vkn] {
    flex: 1;
}

.sidebar[b-sl4upl6vkn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0, #3a0647 70%);
}

.top-row[b-sl4upl6vkn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row a[b-sl4upl6vkn], .top-row .btn-link[b-sl4upl6vkn] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

        .top-row a:first-child[b-sl4upl6vkn] {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-sl4upl6vkn] {
        display: none;
    }

    .top-row.auth[b-sl4upl6vkn] {
        justify-content: space-between;
    }

    .top-row a[b-sl4upl6vkn], .top-row .btn-link[b-sl4upl6vkn] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-sl4upl6vkn] {
        flex-direction: row;
    }

    .sidebar[b-sl4upl6vkn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-sl4upl6vkn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-sl4upl6vkn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layouts/Legacy/EmptyLayout.razor.rz.scp.css */
.page[b-3sjz7jd6bh] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-3sjz7jd6bh] {
    flex: 1;
}

.sidebar[b-3sjz7jd6bh] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0, #3a0647 70%);
}

.top-row[b-3sjz7jd6bh] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row a[b-3sjz7jd6bh], .top-row .btn-link[b-3sjz7jd6bh] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

        .top-row a:first-child[b-3sjz7jd6bh] {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-3sjz7jd6bh] {
        display: none;
    }

    .top-row.auth[b-3sjz7jd6bh] {
        justify-content: space-between;
    }

    .top-row a[b-3sjz7jd6bh], .top-row .btn-link[b-3sjz7jd6bh] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3sjz7jd6bh] {
        flex-direction: row;
    }

    .sidebar[b-3sjz7jd6bh] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3sjz7jd6bh] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-3sjz7jd6bh] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layouts/Legacy/MainLegacyLayout.razor.rz.scp.css */
.page[b-un3v595k2w] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-un3v595k2w] {
    flex: 1;
}

.sidebar[b-un3v595k2w] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0, #3a0647 70%);
}

.top-row[b-un3v595k2w] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row a[b-un3v595k2w], .top-row .btn-link[b-un3v595k2w] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

        .top-row a:first-child[b-un3v595k2w] {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-un3v595k2w] {
        display: none;
    }

    .top-row.auth[b-un3v595k2w] {
        justify-content: space-between;
    }

    .top-row a[b-un3v595k2w], .top-row .btn-link[b-un3v595k2w] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-un3v595k2w] {
        flex-direction: row;
    }

    .sidebar[b-un3v595k2w] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-un3v595k2w] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-un3v595k2w] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/QR/GeneratedPayments.razor.rz.scp.css */
.status-ok[b-6ve5eirmd8]::before {
    content: "\2714"; /* ✔ */
    color: green;
    font-size: 23px; /* Zvýšení velikosti */
    display: inline-block; /* Umožní lepší manipulaci */
}

.status-nok[b-6ve5eirmd8]::before {
    content: "\2716"; /* ✖ */
    color: red;
    font-size: 23px;
    display: inline-block;
}

.status-delayed[b-6ve5eirmd8]::before {
    content: "\26A0"; /* ⚠ */
    color: orange;
    font-size: 23px;
    display: inline-block;
}

/* Specifické stylování pouze pro ikony nad tabulkou */
label span.status-ok[b-6ve5eirmd8]::before,
label span.status-nok[b-6ve5eirmd8]::before,
label span.status-delayed[b-6ve5eirmd8]::before {
    font-size: 20px; /* Nastaví velikost ikon na 20px */
}
/* /Pages/QR/Generator.razor.rz.scp.css */
.progress-container[b-xhhujy2mw8] {
    width: 170px; /* Trochu větší než QR kód */
    height: 20px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.progress-bar[b-xhhujy2mw8] {
    height: 100%;
    background-color: green;
    transition: width 1s linear;
}
/* /Pages/QR/Login.razor.rz.scp.css */
/* Obecné styly formuláře */
.login-form input[b-acbfikyihe] {
    border-radius: 4px;
    border: 1px solid #ced4da;
    transition: box-shadow 0.3s ease-in-out;
}

    .login-form input:focus[b-acbfikyihe] {
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
        border-color: #198754;
    }

/* Zelené tlačítko přihlášení */
.login-button[b-acbfikyihe] {
    transition: all 0.2s ease-in-out;
}

    .login-button:hover[b-acbfikyihe] {
        background-color: #157347;
        transform: translateY(-2px);
    }

.forgot-password-link[b-acbfikyihe] {
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
}

    .forgot-password-link:hover[b-acbfikyihe] {
        color: #198754;
        text-decoration: underline;
    }



/* Tlačítko registrace */
.btn-outline-secondary[b-acbfikyihe] {
    transition: all 0.2s ease-in-out;
}

    .btn-outline-secondary:hover[b-acbfikyihe] {
        background-color: #e2e6ea;
    }

.benefit-list[b-acbfikyihe] {
    max-width: 500px;
}

.toggle-header[b-acbfikyihe] {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    display: inline-block;
}

    .toggle-header:hover[b-acbfikyihe] {
        color: #198754;
    }

.toggle-arrow[b-acbfikyihe] {
    font-size: 0.9rem;
    margin-left: 8px;
    vertical-align: middle;
}

.benefit-list[b-acbfikyihe] {
    max-width: 500px;
    text-align: left;
}

.header-bar[b-acbfikyihe] {
    background-color: #f8f9fa; /* světlá šedá */
    padding: 1rem 2rem;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 800px) {
    .branding[b-acbfikyihe] {
        display: none !important;
    }
}

.btn-success[b-acbfikyihe] {
    transition: all 0.2s ease-in-out;
}

    .btn-success:hover[b-acbfikyihe] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.form-check-label[b-acbfikyihe] {
    font-size: 0.75rem;
    color: #6c757d;
}

.move-up[b-acbfikyihe] {
    position: relative;
    top: -2px; /* jemné posunutí nahoru, hodnotu můžete upravit dle potřeby */
}



/* /Pages/QR/TestPayment.razor.rz.scp.css */
/* Obecné styly formuláře */
.login-form input[b-u1ic3nf0u9] {
    border-radius: 4px;
    border: 1px solid #ced4da;
    transition: box-shadow 0.3s ease-in-out;
}

    .login-form input:focus[b-u1ic3nf0u9] {
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
        border-color: #198754;
    }

/* Zelené tlačítko přihlášení */
.login-button[b-u1ic3nf0u9] {
    transition: all 0.2s ease-in-out;
}

    .login-button:hover[b-u1ic3nf0u9] {
        background-color: #157347;
        transform: translateY(-2px);
    }

.forgot-password-link[b-u1ic3nf0u9] {
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
}

    .forgot-password-link:hover[b-u1ic3nf0u9] {
        color: #198754;
        text-decoration: underline;
    }



/* Tlačítko registrace */
.btn-outline-secondary[b-u1ic3nf0u9] {
    transition: all 0.2s ease-in-out;
}

    .btn-outline-secondary:hover[b-u1ic3nf0u9] {
        background-color: #e2e6ea;
    }

.benefit-list[b-u1ic3nf0u9] {
    max-width: 500px;
}

.toggle-header[b-u1ic3nf0u9] {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    display: inline-block;
}

    .toggle-header:hover[b-u1ic3nf0u9] {
        color: #198754;
    }

.toggle-arrow[b-u1ic3nf0u9] {
    font-size: 0.9rem;
    margin-left: 8px;
    vertical-align: middle;
}

.benefit-list[b-u1ic3nf0u9] {
    max-width: 500px;
    text-align: left;
}

.header-bar[b-u1ic3nf0u9] {
    background-color: #f8f9fa; /* světlá šedá */
    padding: 1rem 2rem;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 800px) {
    .branding[b-u1ic3nf0u9] {
        display: none !important;
    }
}

.btn-success[b-u1ic3nf0u9] {
    transition: all 0.2s ease-in-out;
}

    .btn-success:hover[b-u1ic3nf0u9] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.form-check-label[b-u1ic3nf0u9] {
    font-size: 0.75rem;
    color: #6c757d;
}

.move-up[b-u1ic3nf0u9] {
    position: relative;
    top: -2px; /* jemné posunutí nahoru, hodnotu můžete upravit dle potřeby */
}



/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-y1xum6j49w] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-y1xum6j49w] {
    flex: 1;
}

.sidebar[b-y1xum6j49w] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y1xum6j49w] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y1xum6j49w]  a, .top-row[b-y1xum6j49w]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-y1xum6j49w]  a:hover, .top-row[b-y1xum6j49w]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-y1xum6j49w]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-y1xum6j49w] {
        display: none;
    }

    .top-row.auth[b-y1xum6j49w] {
        justify-content: space-between;
    }

    .top-row[b-y1xum6j49w]  a, .top-row[b-y1xum6j49w]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y1xum6j49w] {
        flex-direction: row;
    }

    .sidebar[b-y1xum6j49w] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y1xum6j49w] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-y1xum6j49w]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-y1xum6j49w], article[b-y1xum6j49w] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-qqeaxj45wf] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-qqeaxj45wf] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-qqeaxj45wf] {
    font-size: 1.1rem;
}

.oi[b-qqeaxj45wf] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-qqeaxj45wf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-qqeaxj45wf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-qqeaxj45wf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-qqeaxj45wf]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-qqeaxj45wf]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-qqeaxj45wf]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-qqeaxj45wf] {
        display: none;
    }

    .collapse[b-qqeaxj45wf] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
