/* _content/Grafio/Components/Layout/EmptyLayout.razor.rz.scp.css */

/* _content/Grafio/Components/Layout/LandingLayout.razor.rz.scp.css */
.landing-layout[b-x4pzkb4db7],
.landing-layout main[b-x4pzkb4db7],
.landing-content[b-x4pzkb4db7] {
    background: var(--bg);
}

.landing-layout .content[b-x4pzkb4db7] {
    padding: 0 !important;
}
/* _content/Grafio/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ds7eb9jk0c] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-ds7eb9jk0c] {
    background-image: var(--grad-sidebar);
}

.top-row[b-ds7eb9jk0c] {
    background-color: var(--surface-2);
    border-bottom: 1px solid var(--border);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ds7eb9jk0c]  a, .top-row[b-ds7eb9jk0c]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--brand-700);
    }

    .top-row[b-ds7eb9jk0c]  a:hover, .top-row[b-ds7eb9jk0c]  .btn-link:hover { text-decoration: underline; color: var(--brand-500); }

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

@media (max-width: 1199.98px) {
    .top-row[b-ds7eb9jk0c] {
        justify-content: space-between;
    }

    .top-row[b-ds7eb9jk0c]  a, .top-row[b-ds7eb9jk0c]  .btn-link {
        margin-left: 0;
    }
    /* Hide desktop topbar on small screens (mobile header shows chip) */
    .topbar-desktop[b-ds7eb9jk0c]{ display:none !important; }
}

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

    /* Allow main/content to shrink within flex row to prevent clipping */
    main[b-ds7eb9jk0c] { min-width: 0; }
    article[b-ds7eb9jk0c] { min-width: 0; }

    .sidebar[b-ds7eb9jk0c] {
        width: 240px;
        height: calc(100vh - 24px);
        position: fixed;
        top: 12px;
        left: 12px;
        bottom: 12px;
        padding: 8px 8px 10px 8px;
        box-sizing: border-box;
        border-right: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        box-shadow: var(--shadow-1);
        z-index: 100;
    }

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

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

    .top-row[b-ds7eb9jk0c], article[b-ds7eb9jk0c] {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Offset main content so fixed sidebar doesn't overlap */
    main[b-ds7eb9jk0c] {
        margin-left: calc(240px + 24px);
    }
    /* When sidebar is hidden (auth pages), remove offset */
    .page.no-sidebar main[b-ds7eb9jk0c] { margin-left: 0; }
}

/* For auth pages without sidebar, lock layout to viewport to prevent body scrollbars */
.page.no-sidebar[b-ds7eb9jk0c] {
    position: fixed;
    inset: 0; /* top/right/bottom/left:0 */
    display: flex;
    flex-direction: column;
    /* Brak globalnego paska przewijania na stronach auth */
    overflow: hidden;
}

/* Hide the top bar on auth pages (login/register/forgot/reset/etc.) */
.page.no-sidebar .top-row[b-ds7eb9jk0c] {
    display: none;
}

#blazor-error-ui[b-ds7eb9jk0c] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-ds7eb9jk0c] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


/* _content/Grafio/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-yx88a33owz] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-yx88a33owz] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-yx88a33owz] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}
/* Ensure space for hamburger on narrow/medium screens */
@media (max-width: 1199.98px){
    /* Color matching with sidebar gradient on small screens */
    .top-row[b-yx88a33owz]{
        background-image: var(--grad-sidebar);
        background-color: transparent;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .navbar-brand[b-yx88a33owz]{ color:#fff; }
    .navbar-toggler[b-yx88a33owz]{ border-color: rgba(255,255,255,0.22); background-color: rgba(255,255,255,0.08); }
    /* Only reserve space for hamburger toggle (no user chip) */
    .top-row .container-fluid[b-yx88a33owz]{ padding-right: 4rem; }
    .top-row .user-topchip[b-yx88a33owz]{ margin-left:auto; }
    /* Hide greeting chip on small screens */
    .top-row .user-topchip[b-yx88a33owz]{ display:none !important; }
    /* Mobile: keep original small chip, hide leading icon to save space */
    .top-row .user-topchip[b-yx88a33owz]  .ic-user{ display:none !important; }
    .top-row .user-topchip[b-yx88a33owz]  .user-chip{ max-width:52vw; }
}

@media (max-width: 400px){
    .top-row .user-topchip .user-chip[b-yx88a33owz]{ max-width:46vw; }
}

/* Visibility helpers: show user chip in header only on <=1200px */
@media (max-width: 1199.98px){ .d-only-mobile[b-yx88a33owz]{ display:flex !important; } }
@media (min-width: 1200px){ .d-only-mobile[b-yx88a33owz]{ display:none !important; } }

/* Desktop topbar visible only above 1200px */
@media (max-width: 1199.98px){ .topbar-desktop[b-yx88a33owz]{ display:none !important; } }
@media (min-width: 1200px){ .topbar-desktop[b-yx88a33owz]{ display:block !important; } }

.navbar-brand[b-yx88a33owz] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Sidebar logo (blue theme) */
.sidebar-logo[b-yx88a33owz]{ width: 28px; height: 28px; border-radius: 6px; display:inline-block; }

.bi[b-yx88a33owz] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    opacity: 0.95;
}

.bi-house-door-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-yx88a33owz] {
    /* Switch to circle with plus */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0z' fill='white'/%3E%3Cpath d='M8 4.5a.5.5 0 0 1 .5.5v2.5H11a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V8.5H5a.5.5 0 0 1 0-1h2.5V5a.5.5 0 0 1 .5-.5z' fill='black'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

/* Key icon for admin invites */
.bi-key-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-key-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 11a3.5 3.5 0 1 1 3.163-5h6.337a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.354.146H9.207l-.353.354V12.5a.5.5 0 0 1-.5.5H7.5v1a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5v-1H4.5a.5.5 0 0 1-.5-.5V12H3a3.5 3.5 0 0 1 .5-1zM4 7a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5z'/%3E%3Ccircle cx='4' cy='9.5' r='1' fill='black'/%3E%3C/svg%3E");
}

/* Envelope icon for admin e-mail */
.bi-envelope-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-envelope-fill' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555z'/%3E%3Cpath d='M0 4.697v7.104l5.803-3.558L0 4.697z'/%3E%3Cpath d='M6.761 8.83 0 12.5A2 2 0 0 0 2 14h12a2 2 0 0 0 2-1.5l-6.761-3.67L8 9.586l-1.239-.757z'/%3E%3Cpath d='M16 4.697l-5.803 3.546L16 11.801V4.697z'/%3E%3C/svg%3E");
}

/* Support icon for help/contact */
.bi-life-preserver-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m6.43-5.228a7.03 7.03 0 0 1-3.658 3.658l-1.115-2.788a4 4 0 0 0 1.985-1.985zM5.228 14.43a7.03 7.03 0 0 1-3.658-3.658l2.788-1.115a4 4 0 0 0 1.985 1.985zm9.202-9.202-2.788 1.115a4 4 0 0 0-1.985-1.985l1.115-2.788a7.03 7.03 0 0 1 3.658 3.658m-8.087-.87a4 4 0 0 0-1.985 1.985L1.57 5.228A7.03 7.03 0 0 1 5.228 1.57zM8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6'/%3E%3C/svg%3E");
}

/* Existing icons */
.bi-check-circle-fill-nav-menu[b-yx88a33owz] {
    /* Circle base with check mark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0z' fill='white'/%3E%3Cpath d='M11.03 5.97a.75.75 0 0 0-1.06 0L7 8.94 6.03 7.97a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0 0-1.06z' fill='black'/%3E%3C/svg%3E");
}
.bi-trash3-fill-nav-menu[b-yx88a33owz] {
    /* Circle base with X mark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0z' fill='white'/%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 1 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z' fill='black'/%3E%3C/svg%3E");
}

/* Requested new icons */
.bi-check-square-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-check-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M11.03 5.97a.75.75 0 0 1 1.06 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.75.75 0 1 1 1.06-1.06L8 8.94l3.03-2.97z' fill='black'/%3E%3C/svg%3E");
}

.bi-x-square-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-x-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z' fill='black'/%3E%3C/svg%3E");
}

.nav-item[b-yx88a33owz] {
    font-size: 0.95rem;
    padding: 0;
    margin: 4px 8px;
}

/* Remove extra horizontal padding added by px-3 in markup */
.nav-item.px-3[b-yx88a33owz] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .nav-item:first-of-type[b-yx88a33owz] {
        margin-top: 6px;
    }

    .nav-item:last-of-type[b-yx88a33owz] {
        margin-bottom: 8px;
    }

    .nav-item[b-yx88a33owz]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 2.6rem;
        display: flex;
        align-items: center;
        line-height: 2.6rem;
        width: 100%;
        padding: 0 .75rem;
        border-left: 3px solid transparent;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.nav-item[b-yx88a33owz]  a.active {
    background-color: rgba(255,255,255,0.22);
    color: #fff;
    border-left-color: var(--brand-500);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.nav-item[b-yx88a33owz]  .nav-link:hover {
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    border-left-color: var(--brand-500);
}

/* Subtle glow on icon when hover/active for better contrast */
.nav-item[b-yx88a33owz]  .nav-link:hover .bi,
.nav-item[b-yx88a33owz]  a.active .bi {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.45));
}

.nav-scrollable[b-yx88a33owz] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-yx88a33owz] {
    display: block;
}

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

    .nav-scrollable[b-yx88a33owz] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        padding: 6px 6px;
    }
}

/* Section header for grouped menu */
.nav-section[b-yx88a33owz] {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .75rem;
    padding: 8px 12px 4px 12px;
}

/* Indent submenu items */
.nav-item.sub[b-yx88a33owz]  .nav-link {
    padding-left: 1.5rem;
}

/* Tag icon for admin invites */
.bi-tag-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-tag-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l6.414 6.414a1 1 0 0 0 1.414 0l5.586-5.586a1 1 0 0 0 0-1.414L8.707 1.293A1 1 0 0 0 8 1H2z'/%3E%3Ccircle cx='3.5' cy='3.5' r='1.5' fill='black'/%3E%3C/svg%3E");
}

/* Bar chart icon for admin stats */
.bi-bar-chart-fill-nav-menu[b-yx88a33owz] {
    /* Circle background with three bars */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Crect x='4' y='7' width='2' height='5' fill='black'/%3E%3Crect x='7' y='5' width='2' height='7' fill='black'/%3E%3Crect x='10' y='3' width='2' height='9' fill='black'/%3E%3C/svg%3E");
}

/* Industries icon (network nodes) */
.bi-diagram-3-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Ccircle cx='8' cy='4.2' r='1.4' stroke='black' stroke-width='1.1'/%3E%3Ccircle cx='5' cy='10.8' r='1.3' stroke='black' stroke-width='1.1'/%3E%3Ccircle cx='11' cy='10.8' r='1.3' stroke='black' stroke-width='1.1'/%3E%3Cpath d='M6.2 9.6 7.4 6.6M9.8 6.6 11 9.6M6.5 11l3.1-.8' stroke='black' stroke-width='1.1' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* People icon for admin tenants */
.bi-people-fill-nav-menu[b-yx88a33owz] {
    /* Circle background with single head + shoulders */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Ccircle cx='8' cy='6' r='2.3' fill='black'/%3E%3Crect x='5' y='9' width='6' height='4' rx='2' ry='2' fill='black'/%3E%3C/svg%3E");
}

/* Person icon for Settings > Account */
.bi-person-fill-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Ccircle cx='8' cy='5.8' r='2.2' fill='black'/%3E%3Cpath d='M4.5 11.5c0-1.8 1.9-3 3.5-3s3.5 1.2 3.5 3' fill='black'/%3E%3C/svg%3E");
}

/* Logout icon */
.bi-box-arrow-right-nav-menu[b-yx88a33owz] {
    /* Circle base with right arrow and door */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Crect x='3' y='4' width='4' height='8' rx='1' ry='1' fill='black'/%3E%3Cpath d='M7.5 8h4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10.5 6.5L12 8l-1.5 1.5' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Power icon (alternative logout) */
.bi-power-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Cpath d='M8 3.5v4' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M4.5 5.5a4.5 4.5 0 1 0 7 0' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bi-shield-check-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shield-check' viewBox='0 0 16 16'%3E%3Cpath d='M5.072 0a1 1 0 0 0-.66.253l-3.2 2.8A1 1 0 0 0 1 3.953V8c0 2.5 1.356 4.385 2.719 5.682A13.133 13.133 0 0 0 8 15.917a13.133 13.133 0 0 0 4.281-2.235C13.644 12.385 15 10.5 15 8V3.953a1 1 0 0 0-.212-.9l-3.2-2.8A1 1 0 0 0 10.928 0H5.072z'/%3E%3Cpath d='M10.97 5.97a.75.75 0 0 0-1.08-1.04L7.477 7.417 6.11 6.05a.75.75 0 0 0-1.06 1.06l1.82 1.821a.75.75 0 0 0 1.08 0l3.02-3.02z' fill='black'/%3E%3C/svg%3E");
}

.bi-database-lock-nav-menu[b-yx88a33owz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='white'/%3E%3Cellipse cx='8' cy='5' rx='4' ry='2' fill='black'/%3E%3Cpath d='M4 5v4c0 1.1 1.8 2 4 2s4-.9 4-2V5' fill='black'/%3E%3Crect x='6.3' y='7.5' width='3.4' height='4.5' rx='0.8' fill='white'/%3E%3Cpath d='M7 8.2a1 1 0 0 1 2 0v1H7z' fill='black'/%3E%3Crect x='7.2' y='9.2' width='1.6' height='2.2' rx='.8' fill='black'/%3E%3C/svg%3E");
}

/* _content/Grafio/Components/Layout/PublicLayout.razor.rz.scp.css */
.public-page[b-p0o83qzq1w]{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg, #f3f6ff 0%, #ffffff 45%);
}

.public-hero[b-p0o83qzq1w]{
  padding:3rem 1.5rem 2rem;
  display:flex;
  justify-content:center;
  background:transparent;
  margin-bottom:1.25rem;
}

.public-hero-inner[b-p0o83qzq1w]{
  max-width:960px;
  width:100%;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:2.5rem;
}

.public-hero-copy[b-p0o83qzq1w]{
  flex:1 1 auto;
}

.public-hero-copy h1[b-p0o83qzq1w]{
  margin:0;
  font-size:clamp(2.25rem, 4vw, 3rem);
  font-weight:700;
  color:var(--brand-900, #0f172a);
}

.public-hero-copy .brand-kicker[b-p0o83qzq1w]{
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.35rem;
  color:var(--brand-600, #2563eb);
  margin-bottom:.5rem;
  font-weight:600;
}

.public-hero-logo[b-p0o83qzq1w]{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.65rem 1.25rem;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  box-shadow:0 4px 12px rgba(99,102,241,.25);
}

.public-logo[b-p0o83qzq1w]{
  width:72px;
  height:72px;
}

.public-logo-name[b-p0o83qzq1w]{
  font-size:1.5rem;
  font-weight:700;
  color:var(--brand-800, #1d4ed8);
}

.public-content[b-p0o83qzq1w]{
  width:100%;
  max-width:960px;
  margin:0 auto;
  padding-bottom:2rem;
}

@media (max-width: 575.98px){
  .public-hero-inner[b-p0o83qzq1w]{
    flex-direction:column;
    text-align:center;
    gap:1.5rem;
  }
  .public-hero-logo[b-p0o83qzq1w]{
    justify-content:center;
    margin-top:12px;
    margin-bottom:8px;
  }
  .public-logo[b-p0o83qzq1w]{
    width:60px;
    height:60px;
  }
  .public-content[b-p0o83qzq1w]{
    padding-left:1rem;
    padding-right:1rem;
  }
}
/* _content/Grafio/Components/LoginDisplay.razor.rz.scp.css */
.topbar-user[b-o5u183igyi] { margin-left: auto; }
.user-chip[b-o5u183igyi]{
  display:inline-block;
  background: var(--gray-100);
  color: var(--gray-900);
  border:1px solid var(--gray-300);
  border-radius: 9999px;
  padding:.25rem .6rem;
  font-size:.9rem;
}
/* _content/Grafio/Components/Shared/AppFooter.razor.rz.scp.css */
.app-footer[b-nvzbeg28tm] {
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
    padding: 0.95rem 0;
    background: var(--surface);
    color: var(--text);
}

.landing-footer__meta[b-nvzbeg28tm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.landing-footer__links[b-nvzbeg28tm] {
    display: flex;
    gap: 0.75rem 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.landing-footer__links a[b-nvzbeg28tm] {
    color: var(--brand-700);
    text-decoration: none;
    font-weight: 500;
}

.landing-footer__links a:hover[b-nvzbeg28tm],
.landing-footer__links a:focus-visible[b-nvzbeg28tm] {
    color: var(--brand-500);
    text-decoration: underline;
}

.landing-footer__copy[b-nvzbeg28tm] {
    color: var(--text);
    font-weight: 600;
}

.landing-footer__cookie[b-nvzbeg28tm] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-2, #f1f5f9);
    color: var(--brand-700);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.landing-footer__cookie:hover[b-nvzbeg28tm],
.landing-footer__cookie:focus-visible[b-nvzbeg28tm] {
    border-color: var(--brand-500);
    color: var(--brand-600, #2563eb);
    background: rgba(37, 99, 235, 0.08);
}

.landing-footer__cookie svg[b-nvzbeg28tm] {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
/* _content/Grafio/Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-consent-root[b-9n9hkcbuc1] {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1300;
  max-width: min(420px, calc(100vw - 2rem));
  font-size: .95rem;
}

.cookie-banner[b-9n9hkcbuc1] {
  background: var(--surface, #fff);
  border-radius: 18px;
  box-shadow: var(--elev-2, 0 12px 48px rgba(15,23,42,.26));
  padding: 1.5rem;
  border: 1px solid rgba(15,23,42,.05);
  color: var(--text, #0f172a);
}

.cookie-banner__header[b-9n9hkcbuc1] {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-banner__header h2[b-9n9hkcbuc1] {
  font-size: 1.25rem;
  margin: 0 0 .4rem;
}

.cookie-banner__header p[b-9n9hkcbuc1] {
  margin: 0;
  color: var(--text-muted, #475569);
}

.cookie-banner__header a[b-9n9hkcbuc1] {
  font-weight: 600;
}

.cookie-banner__header .btn-close[b-9n9hkcbuc1] {
  border: none;
  background: transparent;
  color: var(--text-muted, #475569);
  font-size: 1.35rem;
  line-height: 1;
  padding: .25rem .35rem;
  cursor: pointer;
}

.cookie-options[b-9n9hkcbuc1] {
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

  .cookie-option[b-9n9hkcbuc1] {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .75rem 1.25rem .75rem 1rem;
    border-radius: var(--radius-md, 12px);
    background: var(--surface-2, #f8fafc);
    border: 1px solid rgba(15,23,42,.06);
  }
  
  .cookie-option__body[b-9n9hkcbuc1]{
    flex:1 1 auto;
  }
  
.cookie-option.--locked[b-9n9hkcbuc1] {
  background: rgba(15,23,42,.04);
}

.cookie-option.--readonly .cookie-switch input:disabled + span[b-9n9hkcbuc1]{
  background: linear-gradient(120deg, var(--brand-600, #2563eb), var(--accent-600, #7c3aed));
  opacity:.7;
}

.cookie-option.--disabled[b-9n9hkcbuc1]{
  opacity:.8;
}
  
  .cookie-option.--disabled .cookie-switch[b-9n9hkcbuc1]{
    opacity:.4;
    pointer-events:none;
  }
  
  .cookie-option__title[b-9n9hkcbuc1] {
    font-weight: 600;
    margin-bottom: .15rem;
  }
  
  .cookie-option p[b-9n9hkcbuc1] {
    margin: 0;
    color: var(--text-muted, #475569);
    font-size: .9rem;
  }
  
  .cookie-chip[b-9n9hkcbuc1] {
    font-size: .8rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(15,23,42,.08);
    color: var (--text, #0f172a);
    font-weight: 600;
  }

  .cookie-switch[b-9n9hkcbuc1] {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 24px;
    flex: 0 0 auto;
    margin-left: auto;
  }

.cookie-switch input[b-9n9hkcbuc1] {
  width: 0;
  height: 0;
  opacity: 0;
}

.cookie-switch span[b-9n9hkcbuc1] {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.25);
  border-radius: 999px;
  transition: background .2s ease;
}

.cookie-switch span[b-9n9hkcbuc1]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.2);
  transition: transform .2s ease;
}

.cookie-switch input:checked + span[b-9n9hkcbuc1] {
  background: linear-gradient(120deg, var(--brand-600, #2563eb), var(--accent-600, #7c3aed));
}

.cookie-switch input:checked + span[b-9n9hkcbuc1]::after {
  transform: translateX(20px);
}

.cookie-banner__actions[b-9n9hkcbuc1] {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
}

.cookie-banner__actions .btn[b-9n9hkcbuc1]{
  flex:1 1 30%;
  min-width:130px;
}

.cookie-banner__actions .btn-primary[b-9n9hkcbuc1]{
  flex:1 1 100%;
}

.cookie-note[b-9n9hkcbuc1] {
  margin: 1rem 0 0;
  font-size: .85rem;
  color: var(--text-muted, #475569);
}

.cookie-manage-button[b-9n9hkcbuc1] {
  border-radius: 999px;
  padding: .5rem;
  border: 1px solid rgba(15,23,42,.2);
  background: var(--surface, #fff);
  color: var(--text, #0f172a);
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,23,42,.2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  width:48px;
  height:48px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cookie-manage-button:hover[b-9n9hkcbuc1]{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15,23,42,.24);
}

.cookie-manage-button .cookie-icon[b-9n9hkcbuc1]{
  display:inline-flex;
  width:26px;
  height:26px;
  background-image:url('/img/grafio_cookies.png');
  background-size:cover;
  background-position:center;
  border-radius:50%;
}

@media (max-width: 575.98px) {
  .cookie-consent-root[b-9n9hkcbuc1] {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .cookie-banner__actions[b-9n9hkcbuc1] {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__header[b-9n9hkcbuc1] {
    flex-direction: column;
  }

  .cookie-banner__actions .btn[b-9n9hkcbuc1]{
    min-width:0;
  }
}
/* _content/Grafio/Components/Shared/Modal.razor.rz.scp.css */
.g-modal-backdrop[b-obk7req117] {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1050; /* above navbar etc. */
  animation: g-backdrop-fade-b-obk7req117 .12s ease-out;
}

.g-modal-dialog[b-obk7req117] {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-1);
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: g-dialog-pop-b-obk7req117 .16s cubic-bezier(.2,.8,.2,1);
}

.g-modal-sm[b-obk7req117] { width: 360px; }
.g-modal-md[b-obk7req117] { width: 560px; }
.g-modal-lg[b-obk7req117] { width: 920px; max-width: 100%; }
/* Fullscreen-like dialog */
.g-modal-full[b-obk7req117] { width: calc(100vw - 2rem); max-width: calc(100vw - 2rem); height: auto; max-height: calc(100vh - 2rem); }

.g-modal-header[b-obk7req117],
.g-modal-footer[b-obk7req117] { padding: .75rem 1rem; display: flex; justify-content: flex-end; gap: .5rem; }
.g-modal-header[b-obk7req117] { border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .5rem; }
.g-modal-title[b-obk7req117] { margin: 0; font-size: 1.1rem; font-weight: 600; }
.g-modal-close[b-obk7req117] {
  margin-left: auto;
  min-width: 40px;
  height: 36px;
  padding: .4rem .55rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #374151;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.g-modal-close:hover[b-obk7req117],
.g-modal-close:focus-visible[b-obk7req117] {
  border-color: #cbd5e1;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .12);
  color: #111827;
}
.g-modal-close:active[b-obk7req117] {
  box-shadow: none;
  transform: translateY(0);
}

.g-modal-body[b-obk7req117] { padding: 1rem; overflow: auto; }

/* Make footer buttons equal width for consistent UI */
.g-modal-footer .btn[b-obk7req117] { flex: 0 0 140px; }
/* Subtelne stany dla secondary */
.g-modal-footer .btn.btn-secondary[b-obk7req117]{ background:var(--surface-2); border:1px solid var(--border); color:var(--text); }
.g-modal-footer .btn.btn-secondary:hover:not(:disabled)[b-obk7req117]{ background:#e3e8ff; border-color:#7c89ff; color:var(--text); box-shadow:none; transform:none; }
.g-modal-footer .btn.btn-secondary:focus-visible[b-obk7req117]{ outline:2px solid rgba(37,99,235,.35); outline-offset:2px; }
.g-modal-footer .btn.btn-secondary:disabled[b-obk7req117]{ background:var(--surface-2); color:#94a3b8; border-color:var(--border); cursor:not-allowed; box-shadow:none; }

@keyframes g-backdrop-fade-b-obk7req117 {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes g-dialog-pop-b-obk7req117 {
  from { opacity: 0; transform: translateY(4px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Action list inside modal: subtle hover with color accents */
.g-modal-body[b-obk7req117]  .g-actions .btn {
  transition: background-color .12s ease, border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.g-modal-body[b-obk7req117]  .g-actions .btn.btn-light.border { background-color:var(--surface-2); border-color:var(--border); color:var(--text); }
.g-modal-body[b-obk7req117]  .g-actions .btn.btn-light.border:hover { background-color:#e3e8ff !important; border-color:#7c89ff !important; box-shadow:0 3px 8px rgba(15,23,42,.16); transform: translateY(-1px); }
.g-modal-body[b-obk7req117]  .g-actions .btn.btn-light.border:active { transform: translateY(0); box-shadow:0 1px 2px rgba(15,23,42,.08); }
.g-modal-body[b-obk7req117]  .g-actions .btn.btn-light.border:focus-visible { outline:2px solid rgba(37,99,235,.35); outline-offset:2px; }
/* _content/Grafio/Features/Account/Presentation/Account.razor.rz.scp.css */
.segments-card[b-as4hovsfug] {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.segments-header h2[b-as4hovsfug] {
  margin-bottom: 0;
}

.segments-form .form-control[b-as4hovsfug] {
  border-radius: 10px;
}
.segments-add-btn[b-as4hovsfug] {
  min-width: 160px;
  border-radius: 10px;
}

.segments-list[b-as4hovsfug] {
  display: grid;
  gap: 12px;
}

.segment-row[b-as4hovsfug] {
  background: #f8f9fb;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.segment-row:hover[b-as4hovsfug] {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.segment-row .badge[b-as4hovsfug] {
  min-width: 90px;
  text-align: center;
}

.segment-row .btn[b-as4hovsfug] {
  border-radius: 8px;
}
/* _content/Grafio/Features/Admin/Presentation/AdminConsents.razor.rz.scp.css */
.status-pill[b-o2b4xc4rg2] {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #e2e8f0;
    color: #1e293b;
}

.status-pill.accepted[b-o2b4xc4rg2] {
    background-color: #dcfce7;
    color: #166534;
}

.status-pill.declined[b-o2b4xc4rg2] {
    background-color: #fee2e2;
    color: #991b1b;
}

.toolbar-stack[b-o2b4xc4rg2] { gap: .5rem; }
.filters-content[b-o2b4xc4rg2] { display: flex; gap: .75rem; flex-wrap: wrap; align-items: flex-end; width:100%; }
.consent-field[b-o2b4xc4rg2] { min-width: 140px; display: flex; flex-direction: column; flex: 0 1 150px; }
.consent-field .form-label[b-o2b4xc4rg2] { font-size: .85rem; font-weight: 600; margin-bottom: .25rem; }
.btn-stack .btn[b-o2b4xc4rg2] { min-width: 120px; }

@media (max-width: 1199.98px) {
    .filters-content[b-o2b4xc4rg2] { display: none !important; width: 100%; }
    .filters-toggle:checked ~ .filters-content[b-o2b4xc4rg2] { display: flex !important; flex-direction: column; }
    .consent-field[b-o2b4xc4rg2] { width: 100%; }
    .btn-stack[b-o2b4xc4rg2] { width: 100%; flex-direction: column; }
    .btn-stack .btn[b-o2b4xc4rg2] { width: 100%; }
    label[for="consent-filters-toggle"][b-o2b4xc4rg2] { display: inline-flex !important; }
}
/* _content/Grafio/Features/Admin/Presentation/AdminEmail.razor.rz.scp.css */
.email-preview-head[b-souc5zsbm2]{ display:flex; align-items:center; }
.email-preview-head .btn[b-souc5zsbm2]{ display:inline-flex; align-items:center; }
/* _content/Grafio/Features/Admin/Presentation/AdminIndustries.razor.rz.scp.css */
.table th[b-ah0cgq1nhu],
.table td[b-ah0cgq1nhu] {
    vertical-align: middle;
}

.table .form-control-sm[b-ah0cgq1nhu] {
    min-width: 180px;
}

.segments-list .form-control-sm[b-ah0cgq1nhu] {
    min-width: 200px;
}
/* _content/Grafio/Features/Admin/Presentation/AdminInvites.razor.rz.scp.css */
/* Responsive toolbar helpers */
.toolbar-stack[b-znk2pc4ql8]{ gap:.5rem; align-items:center; }
@media (max-width: 767.98px){ .toolbar-stack .fluid-sm[b-znk2pc4ql8]{ width:100% !important; } }
.toolbar-stack .sort-row[b-znk2pc4ql8]{ width:auto; }
/* Tryb kompaktowy: 1559-992 px */
@media (max-width: 1559px) and (min-width: 1200px){
  .toolbar-stack[b-znk2pc4ql8]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-znk2pc4ql8]{ width:100%; gap:.4rem; }
  .toolbar-stack .sort-left .form-label[b-znk2pc4ql8]{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ max-width:10rem; }
  .toolbar-stack .toolbar-input[b-znk2pc4ql8]{ width: clamp(240px, 24vw, 480px); }
}
/* Start wrapping earlier on medium-wide screens */
@media (max-width: 1559px){ .toolbar-stack .sort-row[b-znk2pc4ql8]{ width:100%; } }
.toolbar-stack .sort-left[b-znk2pc4ql8]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){ .toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ min-width:7rem; max-width:none; } }
.toolbar-stack .sort-left .form-label[b-znk2pc4ql8]{ white-space: nowrap; }
/* Smooth width scaling for filter input */
.toolbar-stack .toolbar-input[b-znk2pc4ql8]{ width: clamp(260px, 28vw, 520px); }

/* Zgodność z Tenants: od md-lg pasek może się łamać */
@media (max-width: 1199.98px){
  .toolbar-stack .sort-row[b-znk2pc4ql8]{ width:100%; }
}

/* Mobile filters toggle (≤1200px): checkbox controls visibility of filters-content */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-znk2pc4ql8]{ width:100% !important; }
  .filters-content[b-znk2pc4ql8]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-znk2pc4ql8]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-row[b-znk2pc4ql8]{ width:100%; }
  .toolbar-stack .sort-left[b-znk2pc4ql8]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-znk2pc4ql8]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
.toolbar-stack .sort-row .btn-sort-dir[b-znk2pc4ql8]{ margin-left:auto; }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-znk2pc4ql8]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }
  /* Wymuś widoczność hamburgera 992-1199px także dla d-only-mobile */
  label[for="inv-filters-toggle"][b-znk2pc4ql8]{ display:inline-flex !important; }
}

/* Ensure hamburger hidden and filters visible on wide screens */
@media (min-width: 1560px){
  label[for="inv-filters-toggle"][b-znk2pc4ql8]{ display:none !important; }
  .filters-content[b-znk2pc4ql8]{ display:flex !important; }
}

/* Hamburger mode on medium-wide screens (992-1559px) to mirror Schedule toolbar */
@media (max-width: 1559px) and (min-width: 1200px){
  label[for="inv-filters-toggle"][b-znk2pc4ql8]{ display:inline-flex !important; }
  .filters-content[b-znk2pc4ql8]{ display:none !important; width:100%; }
  #inv-filters-toggle:checked ~ .filters-content[b-znk2pc4ql8]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .fluid-sm[b-znk2pc4ql8]{ width:100% !important; }
  .toolbar-stack .sort-row[b-znk2pc4ql8]{ width:100%; }
  .toolbar-stack .sort-left[b-znk2pc4ql8]{ display:flex; flex-direction:row; align-items:center !important; gap:.75rem; width:100%; }
  /* Unhide label hidden by compact rules */
  .toolbar-stack .sort-left .form-label[b-znk2pc4ql8]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-znk2pc4ql8]{ margin-left:auto; }
}

/* Ujednolicony rozmiar hamburgera (jak na listach): 36x36, zaokrąglenie */
label[for="inv-filters-toggle"][b-znk2pc4ql8]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}

/* Wide screens ≥1559px: let the sort select fill the row */
@media (min-width: 1560px){
  .toolbar-stack .sort-left[b-znk2pc4ql8]{ display:flex; align-items:center; gap:1rem; }
  .toolbar-stack .sort-left .form-label[b-znk2pc4ql8]{ margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-znk2pc4ql8]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-znk2pc4ql8]{ margin-left:auto; }
}

/* Alias input: fill full column width */
.alias-input[b-znk2pc4ql8]{ width:100%; max-width:none; min-width:0; display:block; box-sizing:border-box; }
@media (max-width: 575.98px){ .alias-input[b-znk2pc4ql8]{ width:100%; } }


/* Unified sizes */
.toolbar-stack .btn-sort-dir[b-znk2pc4ql8]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-znk2pc4ql8]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-znk2pc4ql8]{
  font-size:1.15rem;
}
/* _content/Grafio/Features/Admin/Presentation/AdminRetention.razor.rz.scp.css */
.retention-toolbar[b-vr7iu86nx6]{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}
.retention-filters[b-vr7iu86nx6]{
  display:flex;
  align-items:flex-end;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:.5rem;
}
.retention-field[b-vr7iu86nx6]{
  display:flex;
  flex-direction:column;
  min-width:180px;
}
.retention-field .form-label[b-vr7iu86nx6]{
  font-size:.85rem;
  font-weight:600;
  margin-bottom:.25rem;
}
.retention-actions[b-vr7iu86nx6]{
  display:flex;
  gap:.5rem;
  margin-left:auto;
}
.retention-actions .btn-filter[b-vr7iu86nx6]{
  min-width:110px;
}
@media (max-width:1199.98px){
  .retention-toolbar[b-vr7iu86nx6]{
    flex-direction:column;
    align-items:flex-start;
  }
  .retention-actions[b-vr7iu86nx6]{
    order:3;
    width:100%;
  }
  .retention-actions .btn-filter[b-vr7iu86nx6]{
    width:100%;
  }
  .filters-toggle:checked ~ .retention-filters[b-vr7iu86nx6]{
    display:flex !important;
  }
  label[for="ret-filters-toggle"][b-vr7iu86nx6]{
    display:inline-flex !important;
  }
  .retention-filters[b-vr7iu86nx6]{
    display:none;
    flex-direction:column;
    width:100%;
  }
  .retention-field[b-vr7iu86nx6]{
    width:100%;
  }
}
/* _content/Grafio/Features/Admin/Presentation/AdminTenants.razor.rz.scp.css */
/* Toolbar responsive tweaks for AdminTenants */
.toolbar-stack[b-9kel06zv6f]{ gap:.5rem; }
@media (max-width: 767.98px){
  .toolbar-stack .fluid-sm[b-9kel06zv6f]{ width:100% !important; }
}

/* Middle row aligns label+select left and sort button right */
.toolbar-stack .sort-row[b-9kel06zv6f]{ width:auto; }
.toolbar-stack .sort-row .btn-sort-dir[b-9kel06zv6f]{ margin-left:auto; }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-9kel06zv6f]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }
/* Smooth width scaling for filter input */
.toolbar-stack .toolbar-input[b-9kel06zv6f]{ width: clamp(220px, 24vw, 360px); }
/* Tryb kompaktowy: 1559-992 px */
@media (max-width: 1559px) and (min-width: 1200px){
  .toolbar-stack[b-9kel06zv6f]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-9kel06zv6f]{ width:100%; gap:.4rem; }
  /* Keep label visible in compact view (align with schedule) */
  .toolbar-stack .sort-left .form-label[b-9kel06zv6f]{ position:static; width:auto; height:auto; margin:0; padding:0; overflow:visible; clip:auto; white-space:nowrap; border:0; }
  .toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ max-width:10rem; }
  .toolbar-stack .toolbar-input[b-9kel06zv6f]{ width: clamp(200px, 20vw, 320px); }
}
/* Start wrapping earlier on medium-wide screens */
@media (max-width: 1559px){ .toolbar-stack .sort-row[b-9kel06zv6f]{ width:100%; } }

/* Make 'Wygasa' select adapt nicely */
.toolbar-stack .sort-left[b-9kel06zv6f]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){
  .toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ flex:1 1 auto; min-width:7rem; max-width:none; }
}

/* Keep label "Sortuj wg" on a single line */
.toolbar-stack .sort-left .form-label[b-9kel06zv6f]{ white-space: nowrap; }

@media (max-width: 1199.98px){ .toolbar-stack .sort-row[b-9kel06zv6f]{ width:100%; } }

/* Mobile filters toggle (≤1200px): checkbox controls visibility of filters-content */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-9kel06zv6f]{ width:100% !important; }
  .filters-content[b-9kel06zv6f]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-9kel06zv6f]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-row[b-9kel06zv6f]{ width:100%; }
  .toolbar-stack .sort-left[b-9kel06zv6f]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-9kel06zv6f]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-9kel06zv6f]{ margin-left:auto; }
  /* Wymuś widoczność hamburgera 992-1199px mimo klas utility */
  label[for="ten-filters-toggle"][b-9kel06zv6f]{ display:inline-flex !important; }
}

/* Hamburger mode on medium-wide screens (992-1559px) to mirror Schedule toolbar */
@media (max-width: 1559px) and (min-width: 1200px){
  label[for="ten-filters-toggle"][b-9kel06zv6f]{ display:inline-flex !important; }
  .filters-content[b-9kel06zv6f]{ display:none !important; width:100%; }
  #ten-filters-toggle:checked ~ .filters-content[b-9kel06zv6f]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .fluid-sm[b-9kel06zv6f]{ width:100% !important; }
  .toolbar-stack .sort-row[b-9kel06zv6f]{ width:100%; }
  .toolbar-stack .sort-left[b-9kel06zv6f]{ display:flex; flex-direction:row; align-items:center !important; gap:.75rem; width:100%; }
  /* Unhide label hidden by compact rules */
  .toolbar-stack .sort-left .form-label[b-9kel06zv6f]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-9kel06zv6f]{ margin-left:auto; }
}

/* Ujednolicony rozmiar hamburgera (jak na listach): 36x36, zaokrąglenie */
label[for="ten-filters-toggle"][b-9kel06zv6f]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}

.tenant-status-pill[b-9kel06zv6f]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.15rem 0.7rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.tenant-status-pill.--expired[b-9kel06zv6f]{
  background:#fee2e2;
  color:#b91c1c;
}
.tenant-status-pill.--warning[b-9kel06zv6f]{
  background:#fff4db;
  color:#b45309;
}
.tenant-status-pill.--active[b-9kel06zv6f]{
  background:#dcfce7;
  color:#166534;
}

/* Wide screens ≥1559px: let the sort select fill the row */
@media (min-width: 1560px){
  /* Let the sort row consume remaining space */
  .toolbar-stack .sort-row[b-9kel06zv6f]{ flex:1 1 auto; min-width:0; }
  .toolbar-stack .sort-left[b-9kel06zv6f]{ display:flex; align-items:center; gap:1rem; flex:1 1 auto; min-width:0; }
  .toolbar-stack .sort-left .form-label[b-9kel06zv6f]{ margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-9kel06zv6f]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-9kel06zv6f]{ margin-left:auto; }
}

/* Earlier wrapping on Tenants before mobile */
@media (max-width: 1400px) and (min-width: 1200px){
  table.table-modern[b-9kel06zv6f]{ table-layout: fixed; font-size:.95rem; }
  table.table-modern th[b-9kel06zv6f], table.table-modern td[b-9kel06zv6f]{
    padding:10px 12px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .text-nowrap[b-9kel06zv6f]{ white-space: normal !important; }
  table.table-modern thead th[style][b-9kel06zv6f], table.table-modern tbody td[style][b-9kel06zv6f]{ width:auto !important; }
}

@media (max-width: 1280px) and (min-width: 1200px){
  table.table-modern[b-9kel06zv6f]{ table-layout: fixed; font-size:.90rem; }
  table.table-modern th[b-9kel06zv6f], table.table-modern td[b-9kel06zv6f]{
    padding:9px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .text-nowrap[b-9kel06zv6f]{ white-space: normal !important; }
  table.table-modern thead th[style][b-9kel06zv6f], table.table-modern tbody td[style][b-9kel06zv6f]{ width:auto !important; }
}

/* Small screens: prevent horizontal scroll; allow wrapping */
@media (max-width: 575.98px){
  table.table-modern[b-9kel06zv6f]{ table-layout: fixed; font-size:.82rem; }
  table.table-modern th[b-9kel06zv6f], table.table-modern td[b-9kel06zv6f]{
    white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; padding:6px 8px; min-width:0;
  }
  /* Override explicit widths from markup */
  table.table-modern thead th[style][b-9kel06zv6f], table.table-modern tbody td[style][b-9kel06zv6f]{ width:auto !important; }
  /* Allow elements with text-nowrap to wrap on small screens */
  table.table-modern .text-nowrap[b-9kel06zv6f]{ white-space: normal !important; }
}


/* Unified widths for sort and refresh buttons */
.toolbar-stack .btn-sort-dir[b-9kel06zv6f]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-9kel06zv6f]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-9kel06zv6f]{
  font-size:1.15rem;
}
/* _content/Grafio/Features/Availability/Presentation/AvailabilityForm.razor.rz.scp.css */
/* Availability form - izolowane style (UTF-8) */

.availability-notes-row td[b-74v09tcayd] {
  height: 1.8rem; /* min-height nie działa na komórkach tabeli */
}

/* Bloki sekcyjne (nagłówek w bąbelku + zawartość) */
.av-not-found[b-74v09tcayd]{
  padding:4rem 0;
}

.av-event-card[b-74v09tcayd]{
  box-shadow:0 8px 22px rgba(0,0,0,.03);
}
.av-block[b-74v09tcayd] { border: 2px solid var(--border); border-radius:16px; padding:1rem 1.25rem; background: #fff !important; box-shadow:0 6px 18px rgba(0,0,0,.08); }
.av-block-title[b-74v09tcayd] { display:inline-flex; align-items:center; gap:.65rem; color: var(--text); opacity:.9; border-radius:9999px; padding:.35rem .6rem; font-weight:600; margin-bottom:.5rem; font-size: 1rem; }
.av-title-icon[b-74v09tcayd]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
}
.av-title-icon.ic-user[b-74v09tcayd]{
  background-size:20px 20px;
}
.av-title-icon.ic-schedule[b-74v09tcayd]{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 16 16'%3E%3Crect x='2' y='3' width='12' height='11' rx='2' ry='2' fill='none' stroke='%2327346b' stroke-width='1.2'/%3E%3Cpath d='M4 1.5v3M12 1.5v3M2 6h12' stroke='%2327346b' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size:20px 20px;
}
.av-event-header[b-74v09tcayd]{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.av-event-label[b-74v09tcayd]{
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#6b7280;
  font-weight:600;
  padding-bottom:.4rem;
  border-bottom:1px solid var(--border,#d1d5db);
}
.av-event-title[b-74v09tcayd]{
  font-size:1.75rem;
  font-weight:700;
  margin-top:.45rem;
}

/* Wyraźniejszy opis wydarzenia na górze formularza */
.av-desc[b-74v09tcayd] { color: var(--gray-800); font-size: 1rem; line-height: 1.5; font-weight: 500; }

/* Sloty godzin i przyciski akcji dnia */
.av-slot[b-74v09tcayd] {
  border: 2px solid var(--border);
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease;
  width:100%;
  max-width:70px;
  padding:.25rem .35rem;
  text-align:center;
  font-size:.8rem;
}
.av-slot.btn-outline-secondary[b-74v09tcayd] { border-color: var(--border); background: #fff !important; }
.av-slot.btn-outline-secondary:hover[b-74v09tcayd] { border-color: var(--brand-500); background: var(--brand-50); box-shadow: 0 0 0 3px rgba(37,99,235,.18); transform: translateY(-1px); }
.av-slot.btn-primary[b-74v09tcayd] {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border: 2px solid var(--brand-500);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.20);
  color: #fff;
}
.av-slot.btn-primary:hover[b-74v09tcayd] { filter: brightness(.98); box-shadow: 0 0 0 3px rgba(37,99,235,.18); }

.av-action[b-74v09tcayd] { border: 2px solid var(--border); transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease; }
.av-action:hover[b-74v09tcayd] { border-color: var(--brand-500); background: var(--brand-50); box-shadow: 0 0 0 3px rgba(37,99,235,.18); transform: translateY(-1px); }

.av-slot:focus[b-74v09tcayd], .av-action:focus[b-74v09tcayd] { box-shadow: 0 0 0 3px var(--ring); outline: none; }

.av-slot-grid[b-74v09tcayd]{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(60px,1fr));
  gap:.35rem;
}

/* Tekstowe kontrolki (Imię i nazwisko, Uwagi) - ten sam border i interakcje */
.av-text[b-74v09tcayd] { border: 2px solid var(--border) !important; transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.av-text:hover[b-74v09tcayd] { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.av-text:focus[b-74v09tcayd] { border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--ring); outline: none; }

/* Dystans przycisków w modalu potwierdzenia od tabeli */
.av-modal-actions[b-74v09tcayd] { margin-top: 1.25rem; }

/* Zawijanie/wycinanie długich treści w komórkach (bez wymuszania równej szerokości) */
.av-confirm th[b-74v09tcayd], .av-confirm td[b-74v09tcayd] { width: auto; }
.av-confirm td[b-74v09tcayd] { overflow-wrap: anywhere; word-break: break-word; }

/* Pionowe kreski między kolumnami (dni) w potwierdzeniu */
.av-confirm thead th+th[b-74v09tcayd],
.av-confirm tbody td+td[b-74v09tcayd] { border-left: 1px solid var(--border); }

/* Zewnętrzna ramka tabeli oraz mocniejsze linie poziome w środku */
.av-confirm[b-74v09tcayd] { border: 1px solid var(--border); border-radius: 8px; }
.av-confirm thead th[b-74v09tcayd] { border-bottom: 1px solid var(--border); }
.av-confirm tbody tr+tr td[b-74v09tcayd] { border-top: 1px solid var(--border); }

/* Override: brak szarego tła dla listy dni i sekcji imienia (spójnie z kartą) */
.av-days[b-74v09tcayd] { background: transparent !important; padding: 0; border-radius: 0; }
.av-day[b-74v09tcayd]{
  scroll-margin-top:90px;
}

/* Sukces po zapisie: karta z ikoną i przyciskami nawigacji */
.av-success[b-74v09tcayd] { border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: 0 2px 12px rgba(16,24,40,.08); }
.av-success-icon[b-74v09tcayd] {
  display: inline-block;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  position: relative;
}
.av-success-icon[b-74v09tcayd]::after{
  content: "";
  position: absolute; inset: 0;
  mask: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path fill=\"white\" d=\"M13.485 1.929a1 1 0 0 1 .071 1.414l-7.07 7.778a1 1 0 0 1-1.455.024L1.444 7.152a1 1 0 0 1 1.414-1.414l2.37 2.37 6.364-7a1 1 0 0 1 1.393-.18z\"/></svg>') center/70% no-repeat;
  background: white;
}

@media (max-width: 575.98px){
  .public-brand[b-74v09tcayd]{
    gap:1.2rem;
  }
  .av-block[b-74v09tcayd]{
    border-radius:12px;
    padding:.9rem 1rem;
  }
  .av-event-label[b-74v09tcayd]{
    text-transform:none;
    font-weight:600;
    font-size:.875rem;
    color:#6b7280;
  }
  .av-slot-grid[b-74v09tcayd]{
    grid-template-columns:repeat(auto-fit,minmax(60px,1fr));
    gap:.4rem;
  }
}

/* _content/Grafio/Features/Core/Presentation/Help.razor.rz.scp.css */
.help-page[b-kgx020oqec] {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 0;
}

.help-card[b-kgx020oqec] {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    background: var(--surface);
    box-shadow: var(--shadow-2, 0 20px 60px rgba(15, 23, 42, 0.1));
}

.help-card__header[b-kgx020oqec] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.help-card__icon[b-kgx020oqec] {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-600, #1d4ed8), var(--brand-500, #3b82f6));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.help-card__icon svg[b-kgx020oqec] {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.help-card__lead[b-kgx020oqec] {
    margin: 0.25rem 0 0;
    color: var(--text-muted, #475569);
    line-height: 1.5;
}

.help-card__cta[b-kgx020oqec] {
    margin-left: auto;
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-xl, 18px);
    background: var(--brand-700);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-1, 0 8px 28px rgba(16,24,40,.12));
    transition: background .2s ease, box-shadow .2s ease;
}

.help-card__cta:hover[b-kgx020oqec],
.help-card__cta:focus-visible[b-kgx020oqec] {
    background: var(--brand-900, #0b1e6d);
    color: #fff;
}

.help-card__body[b-kgx020oqec] {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-card__email a[b-kgx020oqec] {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--brand-800, #1e3a8a);
    text-decoration: none;
}

.help-card__email a:hover[b-kgx020oqec],
.help-card__email a:focus-visible[b-kgx020oqec] {
    text-decoration: underline;
}

.help-card__response[b-kgx020oqec] {
    margin: 0;
    color: var(--text-muted, #475569);
    font-size: 0.95rem;
}

.help-form[b-kgx020oqec] {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.help-alert[b-kgx020oqec] {
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-weight: 500;
}

.help-alert.success[b-kgx020oqec] {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.help-alert.error[b-kgx020oqec] {
    background: rgba(248, 113, 113, 0.15);
    color: #7f1d1d;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.help-form__meta[b-kgx020oqec] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted, #475569);
    font-size: 0.9rem;
}

.help-form__meta p[b-kgx020oqec] {
    margin: 0;
    max-width: 520px;
}

.help-form button[type="submit"][b-kgx020oqec] {
    min-width: 200px;
    margin-top: 1.5rem;
}

.help-form textarea.form-control[b-kgx020oqec] {
    min-height: 180px;
}

.help-back[b-kgx020oqec] {
    display: flex;
    justify-content: center;
}

.help-back__link[b-kgx020oqec] {
    text-decoration: none;
    color: var(--brand-700);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: border-color .2s ease, color .2s ease;
}

.help-back__link:hover[b-kgx020oqec],
.help-back__link:focus-visible[b-kgx020oqec] {
    border-color: var(--brand-500);
    color: var(--brand-500);
}

@media (max-width: 768px) {
    .help-card__header[b-kgx020oqec] {
        flex-direction: column;
        align-items: flex-start;
    }

    .help-form__meta[b-kgx020oqec] {
        flex-direction: column;
        align-items: stretch;
    }

    .help-form button[type="submit"][b-kgx020oqec] {
        width: 100%;
    }
}
/* _content/Grafio/Features/Events/Presentation/EventCard.razor.rz.scp.css */
.e-card[b-sluzcfmeb4] {
  border: .5px solid rgba(0,0,0,.09);
  border-radius: .75rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(16,24,40,.08); /* soft shadow */
  position: relative;
  padding-bottom: 4.6rem; /* extra space so bottom-right buttons sit lower (większe przyciski/badge) */
  overflow: hidden; /* aby pasek akcentu szanował promień zaokrąglenia */
  min-height: 240px; /* bardziej pionowa karta */
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease, transform .08s ease;
  will-change: transform, box-shadow;
}

/* Pasek akcentowego koloru (akcje) na górze karty */
.e-card[b-sluzcfmeb4]::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-300), var(--brand-500));
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}

.e-card:focus-within[b-sluzcfmeb4],
.e-card:hover[b-sluzcfmeb4] {
  box-shadow: 0 6px 18px rgba(16,24,40,.12);
  border-color: rgba(0,0,0,.12);
  background-color: #f9fafb;
  transform: translateY(-2px);
}

.e-title[b-sluzcfmeb4] {
  line-height: 1.25;
  /* Zawsze rezerwuj wysokość na 2 linie tytułu */
  min-height: 2.5em; /* 2 * 1.25em */
  max-height: 2.5em;
  overflow: hidden;
  /* Wielowierszowe obcięcie z elipsą tam, gdzie wspierane */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Delikatnie większy odstęp pod tytułem oraz między datą a godzinami */
.e-meta[b-sluzcfmeb4]{ margin-top: 1.6rem; margin-bottom: 1.25rem; }
.e-meta .e-dates[b-sluzcfmeb4]{ margin-bottom: .5rem; }

/* Rezerwacja miejsca na badge w prawym górnym rogu */
.e-header[b-sluzcfmeb4]{
  padding-right: 0; /* usunięcie rezerwy po przeniesieniu badge */
  margin-bottom: 1.25rem; /* większe oddzielenie tytułu od metadanych */
}

/* Mini icon base for card-scoped icons */
.bi-mini[b-sluzcfmeb4] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 1em 1em;
  vertical-align: -0.125em;
}
.bi-clock-mini[b-sluzcfmeb4] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 1 .5.5v3.25l2.5 1.5a.5.5 0 1 1-.5.866l-2.75-1.65A.5.5 0 0 1 7.5 7V4a.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8z'/%3E%3C/svg%3E");
}

/* Mini calendar icon used before date range */
.bi-calendar-mini[b-sluzcfmeb4]{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M3 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.e-meta .e-hours[b-sluzcfmeb4] { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.e-state .text-truncate[b-sluzcfmeb4] { max-width: 60%; }

/* Bottom-right button group: Copy (if any) then Schedule */
.e-actions-br[b-sluzcfmeb4]{
  position: absolute;
  right: .75rem;
  bottom: .375rem;
  display: inline-flex;
  gap: .5rem;
}
/* Przyciski w prawym dolnym rogu mają ten sam rozmiar jak 'Akcje' (btn-sm) */
.e-actions-br .btn[b-sluzcfmeb4]{ padding: .45rem .8rem; min-width: 40px; min-height: 38px; }

/* Prawy górny róg: licznik odpowiedzi */
.e-info-tr[b-sluzcfmeb4]{
  position: absolute;
  right: .75rem;
  top: .75rem;
  display: inline-flex;
  gap: .375rem;
  white-space: nowrap;
}
/* Subtelne wymiary i czytelność dla badge */
.e-resp-badge[b-sluzcfmeb4]{
  padding: .55rem .85rem;
  font-size: 1.05rem;
  line-height: 1;
}
/* Blady niebieski dla badge odpowiedzi na karcie */
.e-resp-badge[b-sluzcfmeb4]{
  background-color: var(--brand-50) !important;
  color: var(--brand-700) !important;
  border-color: var(--brand-300) !important;
}

/* Lewy dolny róg: licznik odpowiedzi */
.e-info-bl[b-sluzcfmeb4]{
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  display: inline-flex;
  gap: .375rem;
  white-space: nowrap;
}

/* Mobile: większe hit-area dla przycisków i badge */
@media (max-width: 575.98px){
  .e-actions-br[b-sluzcfmeb4]{ gap: .6rem; }
  .e-actions-br .btn[b-sluzcfmeb4]{
    padding: .55rem .9rem;
    min-width: 44px; min-height: 40px;
  }
  .e-resp-badge[b-sluzcfmeb4]{
    font-size: 1.15rem;
    padding: .65rem .95rem;
  }
}
/* _content/Grafio/Features/Events/Presentation/Events.razor.rz.scp.css */
/* Domyślnie desktop: pokazuj tabelę, ukrywaj karty */
.events-cards[b-bxmhd6mvpa] { display: none; }
.events-table-wrapper[b-bxmhd6mvpa] { display: block; }

.form-header[b-bxmhd6mvpa] {
  gap: .75rem;
  position: relative;
}

.event-form-grid[b-bxmhd6mvpa] {
  margin-top: 0.75rem;
}

.event-section[b-bxmhd6mvpa] {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: var(--surface);
}

.form-collapse-btn[b-bxmhd6mvpa] {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-size:1.2rem;
  font-weight:700;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
  flex-shrink:0;
  position: relative;
  z-index: 1;
}

.form-collapse-btn.is-open[b-bxmhd6mvpa] {
  background:var(--brand-50,#eff6ff);
  border-color:var(--brand-200,#bfdbfe);
  color:var(--brand-700,#1d4ed8);
}

.form-collapse-btn:focus-visible[b-bxmhd6mvpa] {
  outline:2px solid var(--brand-300,#93c5fd);
  outline-offset:2px;
}

/* Do 1599px włącz karty, ukryj tabelę (tabela od ≥1600) */
@media (max-width: 1599.98px) {
  .events-table-wrapper[b-bxmhd6mvpa] { display: none; }
  .events-cards[b-bxmhd6mvpa] {
    display: grid;
    grid-template-columns: 1fr; /* ≤768: jedna kolumna (zob. niższe media) */
    gap: 1rem;
  }
}

/* 769-1199px: 2 kolumny */
@media (min-width: 769px) and (max-width: 1199.98px) {
  .events-cards[b-bxmhd6mvpa] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1200-1599px: 3 kolumny */
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .events-cards[b-bxmhd6mvpa] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ≤768px: 1 kolumna - podtrzymane, ale explicite dla czytelności */
@media (max-width: 768.98px) {
  .events-cards[b-bxmhd6mvpa] { grid-template-columns: 1fr; }
}

/* Mniejszy badge z licznikiem w nagłówku */
.hdr-count-badge[b-bxmhd6mvpa]{
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  font-size: 1.5rem;
  padding: .6rem 1.2rem;
  margin-left: .75rem;
  background-color: var(--brand-50) !important;
  color: var(--brand-700) !important;
  border-color: var(--brand-300) !important;
}

/* Presety długości slotu - kapsuły w stylu Grafio */
.slot-presets[b-bxmhd6mvpa]{
  display:flex;
  align-items:stretch;
  gap:.5rem;
  width:100%;
}
.slot-presets .form-control[b-bxmhd6mvpa]{
  border-radius: var(--radius-md);
}
.slot-presets .slot-size-btn[b-bxmhd6mvpa]{
  min-width:48px;
  padding:.4rem .65rem;
  border-radius:999px;
  border:2px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:600;
  letter-spacing:.02em;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.slot-presets .slot-size-btn.btn-outline-secondary[b-bxmhd6mvpa]{
  background:var(--surface);
  color:var(--text);
}
.slot-presets .slot-size-btn.btn-outline-secondary:hover[b-bxmhd6mvpa]{
  border-color:#172554;
  color:#172554;
  box-shadow:0 0 0 3px rgba(37,99,235,.18);
  transform:translateY(-1px);
}
.slot-presets .slot-size-btn.btn-secondary[b-bxmhd6mvpa]{
  border-color:#1c2678;
  background:linear-gradient(135deg, #1f2a7f, #4431a3);
  color:#fff;
  box-shadow:0 8px 20px rgba(92,72,255,.25);
}
.slot-presets > .btn[b-bxmhd6mvpa]{
  border-radius: var(--radius-md) !important;
}
.slot-presets > .btn:last-child[b-bxmhd6mvpa]{
  border-top-right-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
}
.slot-presets .slot-size-btn.btn-secondary:hover[b-bxmhd6mvpa]{
  filter:brightness(.97);
  box-shadow:0 10px 24px rgba(92,72,255,.3);
}
.slot-presets .slot-size-btn:focus-visible[b-bxmhd6mvpa]{
  outline:none;
  box-shadow:0 0 0 3px var(--ring);
}
@media (max-width: 575.98px){
  .slot-presets[b-bxmhd6mvpa]{ gap:.4rem; }
  .slot-presets .slot-size-btn[b-bxmhd6mvpa]{
    min-width:42px;
    padding:.32rem .5rem;
  }
}

/* Responsive toolbar helpers (aktywnych wydarzeń) */
.toolbar-stack[b-bxmhd6mvpa]{ gap:.5rem; align-items:center; }
/* Uelastycznij szerokości na małych ekranach */
@media (max-width: 767.98px){ .toolbar-stack .fluid-sm[b-bxmhd6mvpa]{ width:100% !important; } }
.toolbar-stack .sort-row[b-bxmhd6mvpa]{ width:auto; }
.toolbar-stack .sort-left[b-bxmhd6mvpa]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-bxmhd6mvpa]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){ .toolbar-stack .sort-left .form-select[b-bxmhd6mvpa]{ min-width:7rem; max-width:none; } }
.toolbar-stack .sort-left .form-label[b-bxmhd6mvpa]{ white-space: nowrap; }
/* Input filtra skaluje się płynnie, by zmieścić się w jednej linii */
.toolbar-stack .toolbar-input[b-bxmhd6mvpa]{ width: clamp(240px, 26vw, 480px); }

/* Na szerokościach średnich wcześniejsze zawijanie w osobny rząd sortowania */
@media (max-width: 1559px){ .toolbar-stack .sort-row[b-bxmhd6mvpa]{ width:100%; } }
@media (max-width: 1199.98px){ .toolbar-stack .sort-row[b-bxmhd6mvpa]{ width:100%; } }

/* Tryb kompaktowy (1200-1559px): ukryj etykietę wizualnie, zostaw w a11y; zmniejsz szerokości */
@media (max-width: 1559px) and (min-width: 1200px){
  .toolbar-stack[b-bxmhd6mvpa]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-bxmhd6mvpa]{ width:100%; gap:.4rem; }
  .toolbar-stack .sort-left .form-label[b-bxmhd6mvpa]{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .toolbar-stack .sort-left .form-select[b-bxmhd6mvpa]{ max-width:10rem; }
  .toolbar-stack .toolbar-input[b-bxmhd6mvpa]{ width: clamp(220px, 22vw, 420px); }
}

/* Jedna linia na desktopie: nie zawijaj elementów z filtrami */
@media (min-width: 1200px){
  .filters-content[b-bxmhd6mvpa]{ flex-wrap: nowrap !important; }
}

/* Rozmiar hamburgera w toolbarze jak na liście */
label[for="ev-filters-toggle"][b-bxmhd6mvpa]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}

/* Przełącznik filtrów (hamburger) na średnich i małych szerokościach */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-bxmhd6mvpa]{ width:100% !important; }
  /* Wymuś widoczność hamburgera 992-1199 px mimo klas utility */
  label[for="ev-filters-toggle"][b-bxmhd6mvpa]{ display:inline-flex !important; }
  .filters-content[b-bxmhd6mvpa]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-bxmhd6mvpa]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-left[b-bxmhd6mvpa]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-bxmhd6mvpa]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-bxmhd6mvpa]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
.toolbar-stack .sort-row .btn-sort-dir[b-bxmhd6mvpa]{ margin-left:auto; }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-bxmhd6mvpa]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }
}

/* Ukryj hamburger i pokaż filtry na bardzo szerokich ekranach */
@media (min-width: 1560px){
  label[for="ev-filters-toggle"][b-bxmhd6mvpa]{ display:none !important; }
  .filters-content[b-bxmhd6mvpa]{ display:flex !important; }
}

/* Tryb hamburgera na średnich szerokościach (1200-1559px), spójny z innymi stronami */
@media (max-width: 1559px) and (min-width: 1200px){
  label[for="ev-filters-toggle"][b-bxmhd6mvpa]{ display:inline-flex !important; }
  .filters-content[b-bxmhd6mvpa]{ display:none !important; width:100%; }
  #ev-filters-toggle:checked ~ .filters-content[b-bxmhd6mvpa]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .fluid-sm[b-bxmhd6mvpa]{ width:100% !important; }
  .toolbar-stack .sort-row[b-bxmhd6mvpa]{ width:100%; }
  .toolbar-stack .sort-left[b-bxmhd6mvpa]{ display:flex; flex-direction:row; align-items:center !important; gap:.75rem; width:100%; }
  /* Przywrócenie etykiety ukrytej w trybie kompaktowym */
  .toolbar-stack .sort-left .form-label[b-bxmhd6mvpa]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-bxmhd6mvpa]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-bxmhd6mvpa]{ margin-left:auto; }
}
/* Unified sizes */
.toolbar-stack .btn-sort-dir[b-bxmhd6mvpa]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-bxmhd6mvpa]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}

.participant-list .list-group-item[b-bxmhd6mvpa]{
  border:1px solid var(--border);
  border-radius:12px;
  padding:.5rem .75rem;
  background:var(--surface);
}
.participant-toolbar .participant-filter-input[b-bxmhd6mvpa]{
  width: clamp(220px, 28vw, 320px);
  max-width: 100%;
}
.participant-remove-btn[b-bxmhd6mvpa]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:36px;
  padding:0.4rem 0.55rem;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface);
  color:#b91c1c;
  box-shadow:0 3px 10px rgba(15,23,42,.08);
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease, background-color .15s ease, color .15s ease;
}
.participant-remove-btn:hover[b-bxmhd6mvpa],
.participant-remove-btn:focus-visible[b-bxmhd6mvpa]{
  border-color:#ef4444;
  background:linear-gradient(135deg, #fff5f5, #ffe4e6);
  color:#991b1b;
  box-shadow:0 8px 18px rgba(239,68,68,.18);
  transform: translateY(-1px);
  outline:none;
}
.participant-remove-btn:active[b-bxmhd6mvpa]{
  transform: translateY(0);
  box-shadow:none;
}
.participant-remove-btn .bi-mini[b-bxmhd6mvpa]{
  font-size:15px;
  line-height:1;
}
.participant-remove-icon[b-bxmhd6mvpa]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  line-height:1;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-bxmhd6mvpa]{
  font-size:1.15rem;
}

/* Ikony w tabeli linków w modalu (kopiuj, blokuj, odblokuj) */
.links-table .btn[b-bxmhd6mvpa]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.25rem;
}
.links-table .btn .bi-mini[b-bxmhd6mvpa]{
  width:1.2em;
  height:1.2em;
  color:#495057;
}

.link-actions[b-bxmhd6mvpa]{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
}

.link-actions.btn-group > .btn[b-bxmhd6mvpa],
.link-actions.btn-group-sm > .btn[b-bxmhd6mvpa] {
  border-radius: 12px !important;
}

.link-actions .btn+.btn[b-bxmhd6mvpa]{
  margin-left:0;
}

.link-actions .link-action-btn[b-bxmhd6mvpa] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
  border-radius: 12px;
  padding: 0.45rem;
  min-width: 42px;
  height: 42px;
}

.link-actions .link-action-btn:hover[b-bxmhd6mvpa],
.link-actions .link-action-btn:focus-visible[b-bxmhd6mvpa] {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.link-actions .link-action-btn:disabled[b-bxmhd6mvpa] {
  opacity: 0.55;
  box-shadow: none;
}

.link-actions .link-action-btn .bi-mini[b-bxmhd6mvpa] {
  font-size: 16px;
}
/* _content/Grafio/Features/Events/Presentation/EventsArchive.razor.rz.scp.css */
/* Narrow, fit-to-content columns for EventsArchive */
.table-modern .col-fit[b-t5b3r43kr2] { width: 1%; white-space: nowrap; }

/* Earlier wrapping before mobile for EventsArchive */
@media (max-width: 1400px) and (min-width: 1200px){
  table.table-modern[b-t5b3r43kr2]{ table-layout: fixed; font-size:.94rem; }
  table.table-modern th[b-t5b3r43kr2], table.table-modern td[b-t5b3r43kr2]{
    padding:9px 11px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-t5b3r43kr2],
  table.table-modern .hours-col[b-t5b3r43kr2],
  table.table-modern .slot-col[b-t5b3r43kr2]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  table.table-modern .text-nowrap[b-t5b3r43kr2]{ white-space: normal !important; }
  table.table-modern .col-fit[b-t5b3r43kr2]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-t5b3r43kr2], table.table-modern tbody td[style][b-t5b3r43kr2]{ width:auto !important; }
}

@media (max-width: 1280px) and (min-width: 1200px){
  table.table-modern[b-t5b3r43kr2]{ table-layout: fixed; font-size:.88rem; }
  table.table-modern th[b-t5b3r43kr2], table.table-modern td[b-t5b3r43kr2]{
    padding:8px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-t5b3r43kr2],
  table.table-modern .hours-col[b-t5b3r43kr2],
  table.table-modern .slot-col[b-t5b3r43kr2]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  table.table-modern .text-nowrap[b-t5b3r43kr2]{ white-space: normal !important; }
  table.table-modern .col-fit[b-t5b3r43kr2]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-t5b3r43kr2], table.table-modern tbody td[style][b-t5b3r43kr2]{ width:auto !important; }
}

/* Phones and tablets (<= 1200px): allow full wrapping */
@media (max-width: 1199.98px){
  table.table-modern[b-t5b3r43kr2]{ font-size:.87rem; table-layout: fixed; }
  table.table-modern th[b-t5b3r43kr2], table.table-modern td[b-t5b3r43kr2]{
    padding:8px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-t5b3r43kr2],
  table.table-modern .hours-col[b-t5b3r43kr2],
  table.table-modern .slot-col[b-t5b3r43kr2]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  .table-modern .text-nowrap[b-t5b3r43kr2]{ white-space: normal !important; }
  .table-modern .col-fit[b-t5b3r43kr2]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-t5b3r43kr2], table.table-modern tbody td[style][b-t5b3r43kr2]{ width:auto !important; }
}

@media (max-width: 575.98px){
  table.table-modern[b-t5b3r43kr2]{ font-size:.82rem; }
}

/* Mini icon base (scoped to this page) */
.bi-mini[b-t5b3r43kr2] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 1em 1em;
  vertical-align: -0.125em;
}

/* Clock icon used by "Grafik" button */
.bi-clock-mini[b-t5b3r43kr2] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 1 .5.5v3.25l2.5 1.5a.5.5 0 1 1-.5.866l-2.75-1.65A.5.5 0 0 1 7.5 7V4a.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8z'/%3E%3C/svg%3E");
}

/* Responsive toolbar helpers */
.toolbar-stack[b-t5b3r43kr2]{ gap:.5rem; align-items:center; }
@media (max-width: 767.98px){ .toolbar-stack .fluid-sm[b-t5b3r43kr2]{ width:100% !important; } }
.toolbar-stack .sort-row[b-t5b3r43kr2]{ width:auto; }
.toolbar-stack .sort-row .btn-sort-dir[b-t5b3r43kr2]{ margin-left:auto; }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-t5b3r43kr2]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }

/* Wyrównanie wysokości przycisków do selecta (compact page fix) */
.toolbar-stack .btn.btn-outline-secondary[b-t5b3r43kr2],
.toolbar-stack .btn-sort-dir[b-t5b3r43kr2]{
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.toolbar-stack .sort-left[b-t5b3r43kr2]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){ .toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ min-width:7rem; max-width:none; } }
.toolbar-stack .sort-left .form-label[b-t5b3r43kr2]{ white-space: nowrap; }
/* Smooth width scaling for filter input */
.toolbar-stack .toolbar-input[b-t5b3r43kr2]{ width: clamp(240px, 26vw, 480px); }
/* Wcześniejsze zawijanie */
@media (max-width: 1559px){ .toolbar-stack .sort-row[b-t5b3r43kr2]{ width:100%; } }
@media (max-width: 1199.98px){ .toolbar-stack .sort-row[b-t5b3r43kr2]{ width:100%; } }

/* Desktop: keep filters on one line when possible */
@media (min-width: 1200px){
  .filters-content[b-t5b3r43kr2]{ flex-wrap: nowrap !important; }
}

/* Tryb kompaktowy: 1559-1200 px */
@media (max-width: 1559px) and (min-width: 1200px){
  .toolbar-stack[b-t5b3r43kr2]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-t5b3r43kr2]{ width:100%; gap:.4rem; }
  .toolbar-stack .sort-left .form-label[b-t5b3r43kr2]{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ max-width:10rem; }
  .toolbar-stack .toolbar-input[b-t5b3r43kr2]{ width: clamp(220px, 22vw, 420px); }
}
/* Mobile filters toggle */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-t5b3r43kr2]{ width:100% !important; }
  /* Wymuś widoczność hamburgera 992-1199 px mimo d-lg-none */
  label[for="evc-filters-toggle"][b-t5b3r43kr2]{ display:inline-flex !important; }
  .filters-content[b-t5b3r43kr2]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-t5b3r43kr2]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-row[b-t5b3r43kr2]{ width:100%; }
  .toolbar-stack .sort-left[b-t5b3r43kr2]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-t5b3r43kr2]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-t5b3r43kr2]{ margin-left:auto; }
}

/* Hamburger mode on medium-wide screens (1200-1559px) to mirror Schedule toolbar */
@media (max-width: 1559px) and (min-width: 1200px){
  label[for="evc-filters-toggle"][b-t5b3r43kr2]{ display:inline-flex !important; }
  .filters-content[b-t5b3r43kr2]{ display:none !important; width:100%; }
  #evc-filters-toggle:checked ~ .filters-content[b-t5b3r43kr2]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .fluid-sm[b-t5b3r43kr2]{ width:100% !important; }
  .toolbar-stack .sort-row[b-t5b3r43kr2]{ width:100%; }
  .toolbar-stack .sort-left[b-t5b3r43kr2]{ display:flex; flex-direction:row; align-items:center !important; gap:.75rem; width:100%; }
  /* Unhide label hidden by compact rules */
  .toolbar-stack .sort-left .form-label[b-t5b3r43kr2]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-t5b3r43kr2]{ margin-left:auto; }
}

/* Wide screens ≥1559px: let the sort select fill the row */
@media (min-width: 1560px){
  /* Hide hamburger, always show filters on very wide screens */
  label[for="evc-filters-toggle"][b-t5b3r43kr2]{ display:none !important; }
  .filters-content[b-t5b3r43kr2]{ display:flex !important; }
  .toolbar-stack .sort-left[b-t5b3r43kr2]{ display:flex; align-items:center; gap:1rem; }
  .toolbar-stack .sort-left .form-label[b-t5b3r43kr2]{ margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-t5b3r43kr2]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-t5b3r43kr2]{ margin-left:auto; }
}



/* Prevent per-character wrapping for dates/hours/slots */
.table-modern .date-col[b-t5b3r43kr2]{ white-space:nowrap; word-break:keep-all; min-width:9ch; }
.table-modern .hours-col[b-t5b3r43kr2]{ white-space:nowrap; word-break:keep-all; min-width:7ch; }
.table-modern .slot-col[b-t5b3r43kr2]{ white-space:nowrap; word-break:keep-all; min-width:3ch; }

/* Cards grid for archived events (mirrors active events) */
.events-cards[b-t5b3r43kr2] { display: none; }
.events-table-wrapper[b-t5b3r43kr2] { display: block; }

@media (max-width: 1599.98px){
  .events-table-wrapper[b-t5b3r43kr2] { display: none; }
  .events-cards[b-t5b3r43kr2]{ display:grid; grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 769px) and (max-width: 1199.98px){
  .events-cards[b-t5b3r43kr2]{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1200px) and (max-width: 1599.98px){
  .events-cards[b-t5b3r43kr2]{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Badge z licznikiem w nagłówku (spójny z Events) */
.hdr-count-badge[b-t5b3r43kr2]{
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  font-size: 1.5rem;
  padding: .6rem 1.2rem;
  margin-left: .75rem;
  background-color: var(--brand-50) !important;
  color: var(--brand-700) !important;
  border-color: var(--brand-300) !important;
}

/* Rozmiar hamburgera w toolbarze jak na liście */
label[for="evc-filters-toggle"][b-t5b3r43kr2]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}
/* Unified widths for sort and refresh buttons */
.toolbar-stack .btn-sort-dir[b-t5b3r43kr2]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-t5b3r43kr2]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-t5b3r43kr2]{
  font-size:1.15rem;
}
/* _content/Grafio/Features/Events/Presentation/EventSchedule.razor.rz.scp.css */
/* Schedule view styles (cleaned) */

.card-header .badge[b-ggfib2ody5] { font-weight: 500; }

/* Keep content vertically centered */
.schedule-table td[b-ggfib2ody5], .schedule-table th[b-ggfib2ody5] { vertical-align: middle !important; }

.table td.text-wrap[b-ggfib2ody5] { white-space: normal; }
.table td[b-ggfib2ody5], .table th[b-ggfib2ody5] { word-break: break-word; }

/* Sticky first column (Name) */
.schedule-table .sticky-col[b-ggfib2ody5] {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: var(--surface) !important;
  border-right: 1px solid var(--border);
  min-width: 160px !important;
  width: 160px !important;
}

/* Zebra striping */
.schedule-table tbody tr:nth-of-type(odd) > *[b-ggfib2ody5] { background-color: var(--brand-50); }
.schedule-table tbody tr:nth-of-type(odd) .sticky-col[b-ggfib2ody5] { background-color: var(--brand-50) !important; }

/* Row hover */
.schedule-table tbody tr:hover > *[b-ggfib2ody5], .schedule-table tbody tr:focus-within > *[b-ggfib2ody5] { background-color: #eef3ff !important; color: inherit; }
.schedule-table tbody tr:hover .sticky-col[b-ggfib2ody5], .schedule-table tbody tr:focus-within .sticky-col[b-ggfib2ody5] { background-color: #eef3ff !important; color: inherit; }

/* Mniejszy badge z licznikiem w nagłówku (jak na wydarzeniach) */
.hdr-count-badge[b-ggfib2ody5]{
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  font-size: 1.5rem;
  padding: .6rem 1.2rem;
  margin-left: .75rem;
  background-color: var(--brand-50) !important;
  color: var(--brand-700) !important;
  border-color: var(--brand-300) !important;
}

/* Sekcja akcji (Eksport / Symuluj) pod filtrami */
.schedule-actions[b-ggfib2ody5]{ display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; width:100%; flex:1 1 100%; }
@media (max-width: 1199.98px){ .schedule-actions .fluid-sm[b-ggfib2ody5]{ width:100% !important; } }

/* Duplicate responses highlight */
.schedule-table tbody tr.--dupe > *[b-ggfib2ody5], .schedule-table tbody tr.--dupe .sticky-col[b-ggfib2ody5] { background-color: #fff3cd !important; }

/* Grid and layout */
.schedule-table[b-ggfib2ody5] { border-collapse: collapse !important; border-spacing: 0 !important; table-layout: auto; }
.schedule-table thead th[b-ggfib2ody5], .schedule-table tbody th[b-ggfib2ody5], .schedule-table td[b-ggfib2ody5] { border: 1px solid var(--border) !important; }

/* Sticky header */
.schedule-table thead th[b-ggfib2ody5] { position: sticky; top: 0; z-index: 3; background: var(--surface-2); }
.schedule-table thead tr:first-child .sticky-col[b-ggfib2ody5] { background: var(--surface-2) !important; color: var(--text); }
.schedule-table thead tr:first-child th[b-ggfib2ody5] { background: var(--surface-2); font-weight: 700; color: var(--text); }
.schedule-table thead tr:nth-child(2) th[b-ggfib2ody5] { background: var(--surface-2); font-weight: 600; color: var(--text); }

/* Padding */
.schedule-table th[b-ggfib2ody5], .schedule-table td[b-ggfib2ody5] { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }

/* Alignment */
.schedule-table td[b-ggfib2ody5] { text-align: center; }
.schedule-table thead th:not(.sticky-col)[b-ggfib2ody5] { text-align: center; }

/* Time/Notes base behavior */
.schedule-table .time-col[b-ggfib2ody5] { white-space: nowrap !important; word-break: normal !important; overflow-wrap: normal !important; hyphens: none; }
.schedule-table .note-col[b-ggfib2ody5] { white-space: normal; word-break: break-word; overflow-wrap: anywhere; }

/* Fixed widths */
.schedule-table .lp-col[b-ggfib2ody5] { width: calc(4ch + 1.5rem - 10px) !important; min-width: calc(4ch + 1.5rem - 10px) !important; max-width: calc(4ch + 1.5rem - 10px) !important; }
.schedule-table .created-col[b-ggfib2ody5] { white-space: nowrap; width: 110px !important; min-width: 110px !important; max-width: 110px !important; }
.schedule-table .category-col[b-ggfib2ody5] { white-space: nowrap; width: 140px !important; min-width: 140px !important; max-width: 180px !important; }
.schedule-table thead tr:nth-child(2) th.time-col[b-ggfib2ody5],
.schedule-table thead tr:nth-child(2) th.note-col[b-ggfib2ody5] { width: 130px !important; min-width: 130px !important; max-width: 130px !important; }
.schedule-table tbody td.time-col[b-ggfib2ody5],
.schedule-table tbody td.note-col[b-ggfib2ody5] { width: 130px !important; min-width: 130px !important; max-width: 130px !important; }

/* Time chips */
.schedule-table .time-col[b-ggfib2ody5]  .time-chip {
  display: block;
  box-sizing: border-box;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #e8ebff;
  color: #27346b;
  font-weight: 600;
  font-size: .9rem;
  margin: 2px 0;
  margin-right: auto;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.schedule-table .time-col[b-ggfib2ody5]  .time-chip + .time-chip { margin-top: 4px; }
.schedule-table .time-col[b-ggfib2ody5]  .time-chip.--full { background:#d1fae5; color:#065f46; }

/* Notes text */
.note-text[b-ggfib2ody5] { color: var(--text-muted); font-size:.95rem; }

/* Placeholder for empty time (same width as chip) */
.schedule-table .time-col .text-muted[b-ggfib2ody5] { display:inline-block; min-width: calc(11ch + 16px); text-align:center; }

/* Table scroll wrapper behavior */
/* Make only schedule table wider than container to trigger horizontal scroll */
.schedule-table[b-ggfib2ody5] { width: max-content !important; min-width: 100% !important; }
/* Responsive mode: base overrides (apply at all widths) */
.schedule-page.--responsive .schedule-table[b-ggfib2ody5]{ width:100% !important; table-layout: fixed; }
.schedule-page.--responsive .schedule-table thead th[b-ggfib2ody5],
.schedule-page.--responsive .schedule-table td[b-ggfib2ody5]{
  white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
}
.schedule-page.--responsive .schedule-table .time-col[b-ggfib2ody5],
.schedule-page.--responsive .schedule-table .note-col[b-ggfib2ody5]{ white-space: normal !important; word-break: break-word !important; overflow-wrap:anywhere !important; }
 .schedule-page.--responsive .schedule-table .lp-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table .created-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table .category-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.time-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.note-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table tbody td.time-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table tbody td.note-col[b-ggfib2ody5]{ width:auto !important; min-width:0 !important; max-width:none !important; }

/* Ensure horizontal scrolling is on the table wrapper only */
.table-responsive[b-ggfib2ody5] { display:block; overflow-x: auto; overflow-y: hidden; width: 100%; -webkit-overflow-scrolling: touch; }
/* Prevent card from expanding to table width */
.schedule-scroll[b-ggfib2ody5]{ max-width:100%; width:100%; overflow-x:auto; overflow-y:hidden; }

/* Make the hamburger toggle work at every width */
.schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{
  display:inline-flex !important;
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.schedule-toolbar label[for="sch-filters-toggle"]:hover[b-ggfib2ody5],
.schedule-toolbar label[for="sch-filters-toggle"]:focus-visible[b-ggfib2ody5]{
  background: var(--surface);
  border-color: var(--brand-300, #c7d2fe);
  color: var(--text);
  box-shadow: var(--elev-2, 0 8px 20px rgba(0,0,0,.14));
}
.schedule-toolbar .filters-content[b-ggfib2ody5]{ display:none !important; width:100%; }
#sch-filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }/* Responsive toolbar (align with other panels) */
.toolbar-stack[b-ggfib2ody5]{
  gap:.5rem;
  align-items:flex-start;
}
/* Isolate toolbar from layout width of the schedule table */
.schedule-toolbar[b-ggfib2ody5]{ max-width:100%; overflow:hidden; contain:inline-size; position:relative; }
.schedule-toolbar .toolbar-float-icon[b-ggfib2ody5]{
  position:absolute; top:.5rem; right:.5rem;
  z-index:5;
  width:2rem; height:2rem; display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
}
@media (max-width: 575.98px){
  .schedule-toolbar .toolbar-float-icon[b-ggfib2ody5]{ top:.4rem; right:.4rem; }
}
.schedule-page[b-ggfib2ody5]{ max-width:100%; contain:inline-size; }
/* Allow the title to wrap on small screens without pushing controls to a new line */
.toolbar-stack h1[b-ggfib2ody5]{
  flex: 1 1 0;
  min-width: 0;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}
/* Fixed screen action button (fullscreen) */
.schedule-fab[b-ggfib2ody5]{
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  right: calc(1rem + env(safe-area-inset-right));
  z-index: 1050;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  box-shadow: var(--elev-2, 0 6px 18px rgba(0,0,0,.12));
}
.schedule-fab.btn-outline-secondary[b-ggfib2ody5]{ background: var(--surface); color: var(--text); border-color: var(--border); }
.schedule-fab.btn-outline-secondary:hover[b-ggfib2ody5]{
  background: var(--surface);
  border-color: var(--brand-300, #c7d2fe);
  box-shadow: var(--elev-3, 0 10px 24px rgba(0,0,0,.16));
  transform: translateY(-1px);
}
.schedule-fab.btn-outline-success[b-ggfib2ody5]{
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.schedule-fab.btn-outline-success:hover[b-ggfib2ody5],
.schedule-fab.btn-outline-success:focus-visible[b-ggfib2ody5]{
  background: #ecfdf5;
  border-color: var(--success, #10B981);
  color: var(--success, #10B981);
  box-shadow: var(--elev-3, 0 10px 24px rgba(0,0,0,.16));
  transform: translateY(-1px);
}
.schedule-fab.schedule-fab-export[b-ggfib2ody5]{
  background-color: #185c37 !important;
  border-color: #185c37 !important;
  color: #fff !important;
}
.schedule-fab.schedule-fab-export:hover[b-ggfib2ody5],
.schedule-fab.schedule-fab-export:focus-visible[b-ggfib2ody5]{
  background-color: #1e6f44 !important;
  border-color: #1e6f44 !important;
  color: #fff !important;
  box-shadow: var(--elev-3, 0 10px 24px rgba(0,0,0,.16));
}
.schedule-fab .bi-mini[b-ggfib2ody5]{ width:1.1em; height:1.1em; }
.schedule-fab-export-label[b-ggfib2ody5]{
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: .9rem;
  line-height: 1;
  color: inherit;
}
@media (max-width: 575.98px){
  .schedule-fab[b-ggfib2ody5]{
    width:40px; height:40px;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    right: calc(.75rem + env(safe-area-inset-right));
  }
  .schedule-fab-export[b-ggfib2ody5]{
    bottom: calc(.75rem + env(safe-area-inset-bottom) + 48px) !important;
    right: calc(.75rem + env(safe-area-inset-right)) !important;
  }
  .schedule-fab-ai[b-ggfib2ody5]{
    bottom: calc(.75rem + env(safe-area-inset-bottom) + 48px + 48px) !important;
    right: calc(.75rem + env(safe-area-inset-right)) !important;
  }
}
@media print{ .schedule-fab[b-ggfib2ody5]{ display:none !important; } }
/* Additional FABs for Export and AI (stack above fullscreen) */
.schedule-fab-export[b-ggfib2ody5]{ bottom: calc(1rem + env(safe-area-inset-bottom) + 56px); right: calc(1rem + env(safe-area-inset-right)); }
.schedule-fab-ai[b-ggfib2ody5]{ bottom: calc(1rem + env(safe-area-inset-bottom) + 56px + 56px); right: calc(1rem + env(safe-area-inset-right)); }
/* (Usunięto .controls - układ jak w innych sekcjach) */
@media (max-width: 767.98px){ .toolbar-stack .fluid-sm[b-ggfib2ody5]{ width:100% !important; } }
.toolbar-stack .sort-row[b-ggfib2ody5]{ width:auto; }
/* Hide desktop actions by default; show only on wide desktop */
.schedule-toolbar .desktop-actions[b-ggfib2ody5]{ display:none !important; }

/* Early hamburger: when width gets tighter on medium-wide screens */
@media (max-width: 1759px) and (min-width: 1200px){
  /* Show hamburger toggle despite d-lg-none */
  .schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{ display:inline-flex !important; }
  /* Hide regular filters row and use the collapsible panel like on mobile */
  .schedule-toolbar .filters-content[b-ggfib2ody5]{ display:none !important; width:100%; }
  #sch-filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  /* Ensure compact Refresh button is visible (keeps 36x36 from unified rule) */
  #sch-filters-toggle:checked ~ .filters-content .btn-refresh.d-lg-none[b-ggfib2ody5]{ display:inline-flex !important; align-self:flex-start; }
  /* One-line rows layout like mobile */
  .toolbar-stack .sort-row[b-ggfib2ody5]{ width:100%; }
  .toolbar-stack .sort-left[b-ggfib2ody5]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.75rem; width:100%; }
  /* Unhide label hidden by compact rules */
  .toolbar-stack .sort-left .form-label[b-ggfib2ody5]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:auto; width:auto; white-space:nowrap; }
  /* Refresh button uses tekstowy wariant o stalej wysokosci */
  .toolbar-stack .sort-row .btn-refresh[b-ggfib2ody5]{ height:40px; width:104px; min-width:104px; flex:0 0 104px; padding:.45rem .65rem; white-space:nowrap; }
  .toolbar-stack .sort-left .btn-sort-dir[b-ggfib2ody5]{ flex:0 0 auto; }
  /* Hide desktop actions to avoid duplicates */
  .schedule-toolbar .desktop-actions[b-ggfib2ody5]{ display:none !important; }
}

/* Wide desktop: restore full toolbar, hide hamburger */
@media (min-width: 1760px){
  .schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{ display:none !important; }
  /* removed always-on flex to allow universal toggle */
  .schedule-toolbar .desktop-actions[b-ggfib2ody5]{ display:inline-flex !important; }
  .toolbar-stack .sort-left[b-ggfib2ody5]{ gap:1rem; }
}
@media (max-width: 1199.98px){ .toolbar-stack .sort-row[b-ggfib2ody5]{ width:100%; flex-basis:100%; } }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-ggfib2ody5]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }
.schedule-toolbar .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:0 !important; }
.toolbar-stack .sort-left[b-ggfib2ody5]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){ .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ min-width:7rem; max-width:none; } }
.toolbar-stack .sort-left .form-label[b-ggfib2ody5]{ white-space: nowrap; }
/* Mobile filters toggle */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-ggfib2ody5]{ width:100% !important; }
  .filters-content[b-ggfib2ody5]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-row[b-ggfib2ody5]{ width:100%; }
  /* Każdy wiersz: label + select (i ewentualnie przycisk) w jednej linii */
  .toolbar-stack .sort-left[b-ggfib2ody5]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-ggfib2ody5]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:auto; width:auto; white-space:nowrap; }
  /* Refresh button uses tekstowy wariant o stalej wysokosci */
  .toolbar-stack .sort-row .btn-refresh[b-ggfib2ody5]{ height:40px; width:104px; min-width:104px; flex:0 0 104px; padding:.45rem .65rem; white-space:nowrap; }
  .toolbar-stack .sort-left .btn-sort-dir[b-ggfib2ody5]{ flex:0 0 auto; }
}

/* Tryb kompaktowy: 1619-992 px */
@media (max-width: 1759px) and (min-width: 1200px){
  .toolbar-stack[b-ggfib2ody5]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-ggfib2ody5]{ gap:.4rem; }
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ max-width:10rem; }
  /* Keep label visible in compact view */
  .toolbar-stack .sort-left .form-label[b-ggfib2ody5]{ position:static; width:auto; height:auto; margin:0; padding:0; overflow:visible; clip:auto; white-space:nowrap; border:0; }
  /* Ujednolicone zachowanie jak inne listy: brak sztywnych szerokości, zawijanie, mniejszy font/padding */
  .schedule-page.--responsive .schedule-table[b-ggfib2ody5]{ width:100% !important; table-layout: fixed; font-size:.94rem; }
  .schedule-page.--responsive .schedule-table thead th[b-ggfib2ody5], .schedule-page.--responsive .schedule-table td[b-ggfib2ody5]{ padding:9px 11px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0; }
  .schedule-page.--responsive .schedule-table .time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .note-col[b-ggfib2ody5]{ white-space: normal !important; word-break: break-word !important; overflow-wrap:anywhere !important; hyphens:auto !important; }
 .schedule-page.--responsive .schedule-table .lp-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .created-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .category-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.note-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table tbody td.time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table tbody td.note-col[b-ggfib2ody5]{ width:auto !important; min-width:0 !important; max-width:none !important; }
  .schedule-table .time-col[b-ggfib2ody5]  .time-chip{ font-size:.85rem; padding:2px 6px; }
  /* Węższa kolumna imienia/nazwiska w kompaktowym trybie */
  .schedule-table .sticky-col[b-ggfib2ody5]{ min-width:140px !important; width:140px !important; }
  /* Data zgłoszenia: pozwól zawijać i nie trzymaj sztywnej szerokości */
  .schedule-table .created-col[b-ggfib2ody5]{ white-space: normal !important; word-break: break-word; overflow-wrap:anywhere; min-width: 0 !important; width:auto !important; }
}

/* Hamburger mode overrides (unified behavior) */
@media (max-width: 1199.98px){
  /* Domyślnie panel ukryty; pokazuj po kliknięciu hamburgera */
  .schedule-toolbar .filters-content[b-ggfib2ody5]{ display:none !important; width:100%; }
  #sch-filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  /* Rozszerzaj w mobilnym panelu tylko elementy oznaczone .fluid-sm */
  #sch-filters-toggle:checked ~ .filters-content .d-lg-none.fluid-sm[b-ggfib2ody5]{ display:inline-flex !important; width:100% !important; }
  /* Przyciski kompaktowe (np. Odśwież) nie rozszerzają się jak fluid-sm */
  #sch-filters-toggle:checked ~ .filters-content .btn-refresh[b-ggfib2ody5]{ align-self:flex-start; }
  /* Odśwież (d-lg-none) musi być jawnie pokazany w tym trybie */
  #sch-filters-toggle:checked ~ .filters-content .btn-refresh.d-lg-none[b-ggfib2ody5]{ display:inline-flex !important; }
  .toolbar-stack .fluid-sm[b-ggfib2ody5]{ width:100% !important; }
  .toolbar-stack .sort-row[b-ggfib2ody5]{ width:100%; }
  .toolbar-stack .sort-left[b-ggfib2ody5]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-ggfib2ody5]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:auto; width:auto; white-space:nowrap; }
  .toolbar-stack .sort-left .btn-sort-dir[b-ggfib2ody5]{ flex:0 0 auto; }
  /* Zawijanie na mobilce, brak poziomego scrolla */
  .schedule-page.--responsive .schedule-table[b-ggfib2ody5]{ width:100% !important; table-layout: fixed; font-size:.87rem; }
  .schedule-page.--responsive .schedule-table thead th[b-ggfib2ody5], .schedule-page.--responsive .schedule-table td[b-ggfib2ody5]{ padding:8px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0; }
  .schedule-page.--responsive .schedule-table .time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .note-col[b-ggfib2ody5]{ white-space: normal !important; word-break: break-word !important; overflow-wrap:anywhere !important; }
 .schedule-page.--responsive .schedule-table .lp-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .created-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table .category-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table thead tr:nth-child(2) th.note-col[b-ggfib2ody5],
 .schedule-page.--responsive .schedule-table tbody td.time-col[b-ggfib2ody5], .schedule-page.--responsive .schedule-table tbody td.note-col[b-ggfib2ody5]{ width:auto !important; min-width:0 !important; max-width:none !important; }
  /* Węższa kolumna imienia/nazwiska również na mobilce */
  .schedule-table .sticky-col[b-ggfib2ody5]{ min-width:140px !important; width:140px !important; }
  /* Data zgłoszenia: jawnie zezwól na łamanie */
  .schedule-table .created-col[b-ggfib2ody5]{ white-space: normal !important; word-break: break-word; overflow-wrap:anywhere; }
}

@media (max-width: 1759px) and (min-width: 1200px){
  /* Pokaż hamburgera; panel ukryty do czasu kliknięcia */
  .schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{ display:inline-flex !important; }
  .schedule-toolbar .filters-content[b-ggfib2ody5]{ display:none !important; width:100%; }
  #sch-filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  #sch-filters-toggle:checked ~ .filters-content .d-lg-none.fluid-sm[b-ggfib2ody5]{ display:inline-flex !important; width:100% !important; }
  #sch-filters-toggle:checked ~ .filters-content .btn-refresh[b-ggfib2ody5]{ align-self:flex-start; }
  .schedule-toolbar .desktop-actions[b-ggfib2ody5]{ display:none !important; }
  .toolbar-stack .fluid-sm[b-ggfib2ody5]{ width:100% !important; }
  .toolbar-stack .sort-row[b-ggfib2ody5]{ width:100%; }
  .toolbar-stack .sort-left[b-ggfib2ody5]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:auto; width:auto; white-space:nowrap; }
  .toolbar-stack .sort-left .btn-sort-dir[b-ggfib2ody5]{ flex:0 0 auto; }
  /* Wyrównanie etykiet w pełnoszerokich przyciskach */
  .toolbar-stack .btn.fluid-sm[b-ggfib2ody5]{ display:flex; align-items:center; justify-content:center; text-align:center !important; }
}

@media (min-width: 1760px){
  .schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{ display:none !important; }
  /* removed always-on flex to allow universal toggle */
  .schedule-toolbar .desktop-actions[b-ggfib2ody5]{ display:inline-flex !important; }
  /* On very wide desktops always show filters row */
.schedule-toolbar .filters-content[b-ggfib2ody5]{
    display:flex !important;
    gap:.5rem;
    flex-wrap:nowrap;
    margin-left:auto;
    margin-right:0;
    align-items:center;
    width:auto !important;
    flex:0 0 auto;
  }
  /* Ensure inner rows don't stretch */
  .toolbar-stack .sort-row[b-ggfib2ody5]{ flex:0 0 auto; }
  .toolbar-stack .sort-left[b-ggfib2ody5]{ flex:0 0 auto; }
  /* Keep toolbar items in a single row */
  .schedule-toolbar .toolbar-stack[b-ggfib2ody5]{ flex-wrap: nowrap !important; }
  /* Keep sort direction button flush with select (no extra gap) */
  .toolbar-stack .sort-row .btn-sort-dir[b-ggfib2ody5]{ margin-left:0 !important; }
  /* Tighter spacing between controls */
  .toolbar-stack .sort-left[b-ggfib2ody5]{ gap:.5rem !important; }
  /* Cap select width for compact layout */
  .toolbar-stack .sort-left .form-select[b-ggfib2ody5]{ max-width:12rem !important; }
}

/* Ensure hamburger toggle always reveals filters (safety override) */
.schedule-toolbar .filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{
  display:flex !important;
  flex-direction:column;
  width:100%;
  gap:.5rem;
}

/* Reset expanded hamburger layout when returning to wide desktop (>=1620px) */
@media (min-width: 1620px){
  #sch-filters-toggle:checked ~ .filters-content[b-ggfib2ody5]{
    flex-direction:row;
    flex-wrap:nowrap;
    align-items:center;
    width:auto !important;
    gap:.5rem;
  }
}


/* Unifikacja rozmiaru hamburgera z listami (36x36, zaokrąglenie) */
.schedule-toolbar label[for="sch-filters-toggle"][b-ggfib2ody5]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}






/* Unified widths for sort and refresh buttons */
.toolbar-stack .btn-sort-dir[b-ggfib2ody5]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-ggfib2ody5]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-ggfib2ody5]{
  font-size:1.15rem;
}
/* _content/Grafio/Features/Events/Presentation/EventsDeleted.razor.rz.scp.css */
/* Narrow, fit-to-content columns for EventsDeleted */
.table-modern .col-fit[b-vte4g0milr] { width: 1%; white-space: nowrap; }


/* Responsive toolbar helpers */
.toolbar-stack[b-vte4g0milr]{ gap:.5rem; align-items:center; }
@media (max-width: 767.98px){ .toolbar-stack .fluid-sm[b-vte4g0milr]{ width:100% !important; } }
.toolbar-stack .sort-row[b-vte4g0milr]{ width:auto; }
.toolbar-stack .sort-row .btn-sort-dir[b-vte4g0milr]{ margin-left:auto; }
/* Ikonowy przycisk kierunku sortowania: kompaktowy */
.toolbar-stack .btn-sort-dir[b-vte4g0milr]{ min-width:auto !important; width:auto; padding-left:.5rem; padding-right:.5rem; }
.toolbar-stack .sort-left[b-vte4g0milr]{ flex:1 1 auto; min-width:0; }
.toolbar-stack .sort-left .form-select[b-vte4g0milr]{ flex:1 1 0%; min-width:8rem; max-width:14rem; }
@media (max-width: 767.98px){ .toolbar-stack .sort-left .form-select[b-vte4g0milr]{ min-width:7rem; max-width:none; } }
.toolbar-stack .sort-left .form-label[b-vte4g0milr]{ white-space: nowrap; }
/* Smooth width scaling for filter input */
.toolbar-stack .toolbar-input[b-vte4g0milr]{ width: clamp(240px, 26vw, 480px); }
/* Wcześniejsze zawijanie */
@media (max-width: 1559px){ .toolbar-stack .sort-row[b-vte4g0milr]{ width:100%; } }
@media (max-width: 1199.98px){ .toolbar-stack .sort-row[b-vte4g0milr]{ width:100%; } }

/* Desktop: keep filters on one line when possible */
@media (min-width: 1200px){
  .filters-content[b-vte4g0milr]{ flex-wrap: nowrap !important; }
}

/* Tryb kompaktowy: 1559-1200 px */
@media (max-width: 1559px) and (min-width: 1200px){
  .toolbar-stack[b-vte4g0milr]{ gap:.4rem; }
  .toolbar-stack .sort-row[b-vte4g0milr]{ width:100%; gap:.4rem; }
  .toolbar-stack .sort-left .form-label[b-vte4g0milr]{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .toolbar-stack .sort-left .form-select[b-vte4g0milr]{ max-width:10rem; }
  .toolbar-stack .toolbar-input[b-vte4g0milr]{ width: clamp(220px, 22vw, 420px); }
}
/* Mobile filters toggle */
@media (max-width: 1199.98px){
  .toolbar-stack .fluid-sm[b-vte4g0milr]{ width:100% !important; }
  /* Wymuś widoczność hamburgera 992-1199 px mimo d-lg-none */
  label[for="evd-filters-toggle"][b-vte4g0milr]{ display:inline-flex !important; }
  .filters-content[b-vte4g0milr]{ display:none !important; width:100%; }
  .filters-toggle:checked ~ .filters-content[b-vte4g0milr]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .sort-row[b-vte4g0milr]{ width:100%; }
  .toolbar-stack .sort-left[b-vte4g0milr]{ display:flex; flex-direction:row; align-items:center !important; flex-wrap:nowrap; gap:.5rem; width:100%; }
  .toolbar-stack .sort-left .form-label[b-vte4g0milr]{ white-space:nowrap; margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-vte4g0milr]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-vte4g0milr]{ margin-left:auto; }
}

/* Hamburger mode on medium-wide screens (1200-1559px) to mirror Schedule toolbar */
@media (max-width: 1559px) and (min-width: 1200px){
  label[for="evd-filters-toggle"][b-vte4g0milr]{ display:inline-flex !important; }
  .filters-content[b-vte4g0milr]{ display:none !important; width:100%; }
  #evd-filters-toggle:checked ~ .filters-content[b-vte4g0milr]{ display:flex !important; flex-direction:column; width:100%; gap:.5rem; }
  .toolbar-stack .fluid-sm[b-vte4g0milr]{ width:100% !important; }
  .toolbar-stack .sort-row[b-vte4g0milr]{ width:100%; }
  .toolbar-stack .sort-left[b-vte4g0milr]{ display:flex; flex-direction:row; align-items:center !important; gap:.75rem; width:100%; }
  /* Unhide label hidden by compact rules */
  .toolbar-stack .sort-left .form-label[b-vte4g0milr]{ margin-bottom:0; white-space:nowrap; position:static; width:auto; height:auto; margin:0; overflow:visible; clip:auto; display:inline; }
  .toolbar-stack .sort-left .form-select[b-vte4g0milr]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-vte4g0milr]{ margin-left:auto; }
}

/* Wide screens ≥1559px: let the sort select fill the row */
@media (min-width: 1560px){
  /* Hide hamburger, always show filters on very wide screens */
  label[for="evd-filters-toggle"][b-vte4g0milr]{ display:none !important; }
  .filters-content[b-vte4g0milr]{ display:flex !important; }
  .toolbar-stack .sort-left[b-vte4g0milr]{ display:flex; align-items:center; gap:1rem; }
  .toolbar-stack .sort-left .form-label[b-vte4g0milr]{ margin-bottom:0; }
  .toolbar-stack .sort-left .form-select[b-vte4g0milr]{ flex:1 1 auto; min-width:0; width:100%; max-width:none; }
  .toolbar-stack .sort-row .btn-sort-dir[b-vte4g0milr]{ margin-left:auto; }
}

/* Earlier wrapping before mobile for EventsDeleted */
@media (max-width: 1400px) and (min-width: 1200px){
  table.table-modern[b-vte4g0milr]{ table-layout: fixed; font-size:.94rem; }
  table.table-modern th[b-vte4g0milr], table.table-modern td[b-vte4g0milr]{
    padding:9px 11px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-vte4g0milr],
  table.table-modern .hours-col[b-vte4g0milr],
  table.table-modern .slot-col[b-vte4g0milr]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  table.table-modern .text-nowrap[b-vte4g0milr]{ white-space: normal !important; }
  table.table-modern .col-fit[b-vte4g0milr]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-vte4g0milr], table.table-modern tbody td[style][b-vte4g0milr]{ width:auto !important; }
}

@media (max-width: 1280px) and (min-width: 1200px){
  table.table-modern[b-vte4g0milr]{ table-layout: fixed; font-size:.88rem; }
  table.table-modern th[b-vte4g0milr], table.table-modern td[b-vte4g0milr]{
    padding:8px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-vte4g0milr],
  table.table-modern .hours-col[b-vte4g0milr],
  table.table-modern .slot-col[b-vte4g0milr]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  table.table-modern .text-nowrap[b-vte4g0milr]{ white-space: normal !important; }
  table.table-modern .col-fit[b-vte4g0milr]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-vte4g0milr], table.table-modern tbody td[style][b-vte4g0milr]{ width:auto !important; }
}

/* Phones and tablets (<= 1200px): allow full wrapping */
@media (max-width: 1199.98px){
  table.table-modern[b-vte4g0milr]{ font-size:.87rem; table-layout: fixed; }
  table.table-modern th[b-vte4g0milr], table.table-modern td[b-vte4g0milr]{
    padding:8px 10px; white-space: normal; word-break: break-word; overflow-wrap:anywhere; hyphens:auto; min-width:0;
  }
  table.table-modern .date-col[b-vte4g0milr],
  table.table-modern .hours-col[b-vte4g0milr],
  table.table-modern .slot-col[b-vte4g0milr]{ white-space: normal; word-break: break-word; overflow-wrap:anywhere; min-width:0; }
  .table-modern .text-nowrap[b-vte4g0milr]{ white-space: normal !important; }
  .table-modern .col-fit[b-vte4g0milr]{ width:auto !important; white-space: normal; }
  table.table-modern thead th[style][b-vte4g0milr], table.table-modern tbody td[style][b-vte4g0milr]{ width:auto !important; }
}

@media (max-width: 575.98px){
  table.table-modern[b-vte4g0milr]{ font-size:.82rem; }
}


/* Prevent per-character wrapping for dates/hours/slots */
.table-modern .date-col[b-vte4g0milr]{ white-space:nowrap; word-break:keep-all; min-width:9ch; }
.table-modern .hours-col[b-vte4g0milr]{ white-space:nowrap; word-break:keep-all; min-width:7ch; }
.table-modern .slot-col[b-vte4g0milr]{ white-space:nowrap; word-break:keep-all; min-width:3ch; }

/* Cards grid for deleted events */
.events-cards[b-vte4g0milr] { display: none; }
.events-table-wrapper[b-vte4g0milr] { display: block; }

@media (max-width: 1599.98px){
  .events-table-wrapper[b-vte4g0milr] { display: none; }
  .events-cards[b-vte4g0milr]{ display:grid; grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 769px) and (max-width: 1199.98px){
  .events-cards[b-vte4g0milr]{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1200px) and (max-width: 1599.98px){
  .events-cards[b-vte4g0milr]{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Badge z licznikiem w nagłówku (spójny z Events) */
.hdr-count-badge[b-vte4g0milr]{
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
  font-size: 1.5rem;
  padding: .6rem 1.2rem;
  margin-left: .75rem;
  background-color: var(--brand-50) !important;
  color: var(--brand-700) !important;
  border-color: var(--brand-300) !important;
}

/* Rozmiar hamburgera w toolbarze jak na liście */
label[for="evd-filters-toggle"][b-vte4g0milr]{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .6rem; min-width:36px; min-height:36px; border-radius:12px;
}
/* Unified widths for sort and refresh buttons */
.toolbar-stack .btn-sort-dir[b-vte4g0milr]{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px !important; height:36px;
  padding:.45rem .6rem;
}
.toolbar-stack .btn-refresh[b-vte4g0milr]{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px;
  width:104px;
  min-width:104px;
  flex:0 0 104px;
  padding:.45rem .65rem;
  white-space:nowrap;
}
.toolbar-stack .btn-sort-dir .bi-mini[b-vte4g0milr]{
  font-size:1.15rem;
}
/* _content/Grafio/Features/Landing/Presentation/Landing.razor.rz.scp.css */
.landing-page[b-qp0jc9thn9] {
    min-height: 100vh;
    padding: 32px 48px 0px;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--landing-text);
    background: var(--landing-background, var(--grad-hero));
    --landing-background: var(--grad-hero);
    --landing-panel: var(--surface);
    --landing-panel-alt: var(--surface-2);
    --landing-card: rgba(255, 255, 255, 0.6);
    --landing-border: var(--border);
    --landing-accent: var(--brand-600);
    --landing-accent-2: var(--brand-700);
    --landing-text: var(--text);
    --landing-muted: var(--text-muted);
    --landing-strong: var(--text);
    --landing-pill-bg: rgba(37, 99, 235, 0.12);
    --landing-pill-text: var(--text);
    --landing-badge-bg: rgba(16, 185, 129, 0.14);
    --landing-badge-text: #0b3c2f;
    --landing-usp-icon: var(--success);
    --landing-step-bg: var(--brand-600);
    --landing-step-text: #ffffff;
    --shadow-soft: var(--elev-1);
    --shadow-card: var(--elev-1);
}

.landing-page.theme-dark[b-qp0jc9thn9] {
    --landing-background: var(--grad-hero);
    --landing-panel: var(--surface);
    --landing-panel-alt: var(--surface-2);
    --landing-card: rgba(255, 255, 255, 0.6);
    --landing-border: var(--border);
    --landing-accent: var(--brand-600);
    --landing-accent-2: var(--brand-700);
    --landing-text: var(--text);
    --landing-muted: var(--text-muted);
    --landing-strong: var(--text);
    --landing-pill-bg: rgba(37, 99, 235, 0.12);
    --landing-pill-text: var(--text);
    --landing-badge-bg: rgba(16, 185, 129, 0.14);
    --landing-badge-text: #0b3c2f;
    --landing-usp-icon: var(--success);
    --landing-step-bg: var(--brand-600);
    --landing-step-text: #ffffff;
    --shadow-soft: var(--elev-1);
    --shadow-card: var(--elev-1);
}

.landing-page.theme-light[b-qp0jc9thn9] {
    --landing-background: var(--grad-hero);
    --landing-panel: var(--surface);
    --landing-panel-alt: var(--surface-2);
    --landing-card: rgba(255, 255, 255, 0.6);
    --landing-border: var(--border);
    --landing-accent: var(--brand-600);
    --landing-accent-2: var(--brand-700);
    --landing-text: var(--text);
    --landing-muted: var(--text-muted);
    --landing-strong: var(--text);
    --landing-pill-bg: rgba(37, 99, 235, 0.12);
    --landing-pill-text: var(--text);
    --landing-badge-bg: rgba(16, 185, 129, 0.14);
    --landing-badge-text: #0b3c2f;
    --landing-usp-icon: var(--success);
    --landing-step-bg: var(--brand-600);
    --landing-step-text: #ffffff;
    --shadow-soft: var(--elev-1);
    --shadow-card: var(--elev-1);
}

.landing-content[b-qp0jc9thn9] {
    padding: 0;
}

.landing-topbar[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    background: var(--landing-card);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 12px;
    z-index: 10;
}

.landing-brand[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.landing-brand__logo-link[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.landing-brand__logo[b-qp0jc9thn9] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.landing-brand__name[b-qp0jc9thn9] {
    color: var(--landing-text);
}

.landing-nav[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-weight: 600;
    color: var(--landing-muted);
}

.landing-nav a[b-qp0jc9thn9] {
    color: var(--landing-muted);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.landing-nav a:hover[b-qp0jc9thn9],
.landing-nav a:focus-visible[b-qp0jc9thn9] {
    color: var(--landing-text);
    background: rgba(37, 99, 235, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.landing-menu-toggle[b-qp0jc9thn9] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
    box-shadow: var(--shadow-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing-menu-toggle:focus-visible[b-qp0jc9thn9] {
    outline: 2px solid var(--brand-500);
    outline-offset: 2px;
}

.landing-menu-icon[b-qp0jc9thn9] {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.landing-menu-icon span[b-qp0jc9thn9] {
    display: block;
    height: 2px;
    background: var(--landing-text);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-menu-toggle[b-qp0jc9thn9] {
    justify-self: end;
}

.landing-topbar.nav-open .landing-menu-icon span:nth-child(1)[b-qp0jc9thn9] {
    transform: translateY(7px) rotate(45deg);
}

.landing-topbar.nav-open .landing-menu-icon span:nth-child(2)[b-qp0jc9thn9] {
    opacity: 0;
}

.landing-topbar.nav-open .landing-menu-icon span:nth-child(3)[b-qp0jc9thn9] {
    transform: translateY(-7px) rotate(-45deg);
}

.landing-actions[b-qp0jc9thn9] {
    display: inline-flex;
    gap: 10px;
    justify-content: flex-end;
    justify-self: end;
}

.landing-btn[b-qp0jc9thn9] {
    border: 1px solid var(--landing-border);
    background: var(--surface);
    color: var(--landing-text);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing-btn--primary[b-qp0jc9thn9] {
    background: var(--grad-button);
    color: #fff;
    border: none;
    box-shadow: var(--elev-2);
}

.landing-btn:hover[b-qp0jc9thn9],
.landing-btn:focus-visible[b-qp0jc9thn9] {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
    outline: none;
}

.landing-btn--primary:hover[b-qp0jc9thn9],
.landing-btn--primary:focus-visible[b-qp0jc9thn9] {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.landing-link[b-qp0jc9thn9] {
    background: transparent;
    color: var(--landing-strong);
    border: none;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.landing-link--arrow[b-qp0jc9thn9]::after {
    content: "→";
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.landing-link--arrow:hover[b-qp0jc9thn9]::after,
.landing-link--arrow:focus-visible[b-qp0jc9thn9]::after {
    transform: translateX(3px);
}

.landing-link--toggle[b-qp0jc9thn9] {
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 0;
    background: var(--landing-card);
    color: var(--landing-text);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    display: none;
}

.landing-link--toggle:hover[b-qp0jc9thn9],
.landing-link--toggle:focus-visible[b-qp0jc9thn9] {
    border-color: var(--landing-accent-2);
    color: var(--landing-text);
    text-decoration: none;
    outline: none;
}

.theme-icon svg[b-qp0jc9thn9] {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    display: block;
}

.landing-hero[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px 40px;
    margin: 48px 0 32px;
    align-items: start;
    padding: 8px 0 0 80px;
}

.landing-hero__content[b-qp0jc9thn9] {
    display: grid;
    gap: 16px;
    align-self: stretch;
    padding: 12px 10px 12px 0;
}

.landing-hero__intro[b-qp0jc9thn9] {
    display: grid;
    gap: 12px;
    max-width: 640px;
}

.landing-hero__rail[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-hero__content h1[b-qp0jc9thn9] {
    font-size: clamp(32px, 4vw, 44px);
    margin: 0;
    line-height: 1.1;
}

.landing-hero__cta-group[b-qp0jc9thn9] {
    display: grid;
    gap: 14px;
    align-content: start;
    max-width: 760px;
}

.landing-lead[b-qp0jc9thn9] {
    color: var(--landing-strong);
    font-size: 18px;
    line-height: 1.6;
}

.landing-kicker[b-qp0jc9thn9] {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--landing-accent-2);
    font-weight: 700;
    font-size: 12px;
}

.landing-cta[b-qp0jc9thn9] {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    align-self: start;
}

.landing-pill[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.08));
    color: var(--landing-strong);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.landing-usp[b-qp0jc9thn9] {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 6px 14px;
    color: var(--landing-strong);
}

.landing-usp--spread[b-qp0jc9thn9] {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px 18px;
    max-width: 780px;
}

.landing-usp--chips[b-qp0jc9thn9] {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-template-columns: none;
}

.landing-usp li[b-qp0jc9thn9]::before {
    content: "✓";
    color: var(--landing-usp-icon);
    margin-right: 8px;
}

.landing-usp--chips li[b-qp0jc9thn9] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.landing-hero__mock[b-qp0jc9thn9] {
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.landing-hero__image[b-qp0jc9thn9] {
    width: min(1100px, 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
}

.landing-hero__image img[b-qp0jc9thn9] {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.landing-section[b-qp0jc9thn9] {
    margin: 48px 0;
    padding: 32px 28px;
    border-radius: 18px;
    border: 1px solid var(--landing-border);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.landing-page.theme-light .landing-section[b-qp0jc9thn9] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 255, 0.9));
    border-color: rgba(37, 99, 235, 0.14);
}

.landing-page.theme-dark .landing-section[b-qp0jc9thn9] {
    background: linear-gradient(135deg, rgba(18, 24, 45, 0.9), rgba(14, 22, 38, 0.9));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.landing-section--alt[b-qp0jc9thn9] {
    border-style: dashed;
}

.landing-page.theme-light .landing-section--alt[b-qp0jc9thn9] {
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.35), rgba(226, 232, 240, 0.55));
    border-color: rgba(37, 99, 235, 0.22);
}

.landing-page.theme-dark .landing-section--alt[b-qp0jc9thn9] {
    background: linear-gradient(135deg, rgba(42, 58, 99, 0.4), rgba(30, 41, 71, 0.6));
    border-color: rgba(147, 197, 253, 0.22);
}

.section-header[b-qp0jc9thn9] {
    margin-bottom: 20px;
}

.section-kicker[b-qp0jc9thn9] {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--landing-accent-2);
    font-weight: 700;
    margin: 0 0 6px;
}

.section-lead[b-qp0jc9thn9] {
    color: var(--landing-strong);
    max-width: 720px;
}

.section-footnote[b-qp0jc9thn9] {
    margin-top: 18px;
    color: var(--landing-muted);
}

.landing-section h2[b-qp0jc9thn9] {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 32px);
}

.landing-section h3[b-qp0jc9thn9] {
    margin: 0 0 8px;
}

.list-cards[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.list-card[b-qp0jc9thn9] {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--landing-border);
}

.feature-grid[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.feature-card[b-qp0jc9thn9] {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--landing-border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-card);
}

.feature-card p[b-qp0jc9thn9] {
    color: var(--landing-strong);
}

.steps[b-qp0jc9thn9] {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 12px;
}

.steps li[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--landing-border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.step-number[b-qp0jc9thn9] {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--landing-step-bg), var(--landing-accent));
    color: #fff;
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.steps li:hover[b-qp0jc9thn9],
.steps li:focus-within[b-qp0jc9thn9] {
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
}

.landing-page.theme-light #steps[b-qp0jc9thn9] {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 238, 255, 0.9));
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.14);
}

.landing-page.theme-dark #steps[b-qp0jc9thn9] {
    background: linear-gradient(145deg, rgba(21, 30, 52, 0.9), rgba(16, 24, 42, 0.9));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.audience-grid[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.audience-card[b-qp0jc9thn9] {
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    padding: 16px;
    background: var(--landing-panel);
    box-shadow: var(--shadow-card);
}

.pricing-grid[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.pricing-card[b-qp0jc9thn9] {
    position: relative;
    padding: 20px 18px;
    border-radius: 16px;
    border: 1px solid var(--landing-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 12px;
    min-height: 230px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover[b-qp0jc9thn9],
.pricing-card:focus-within[b-qp0jc9thn9] {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.landing-page.theme-light .pricing-card[b-qp0jc9thn9] {
    background: linear-gradient(145deg, #ffffff, #f4f7ff);
    border-color: rgba(37, 99, 235, 0.14);
}

.landing-page.theme-dark .pricing-card[b-qp0jc9thn9] {
    background: linear-gradient(145deg, rgba(18, 24, 45, 0.7), rgba(12, 18, 32, 0.85));
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card--accent[b-qp0jc9thn9] {
    border-color: rgba(246, 167, 0, 0.45);
    box-shadow: 0 18px 42px rgba(246, 167, 0, 0.24);
    background: linear-gradient(135deg, rgba(246, 167, 0, 0.16), rgba(255, 205, 85, 0.24));
}

.pricing-card__header[b-qp0jc9thn9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pricing-name[b-qp0jc9thn9] {
    font-weight: 800;
    font-size: 17px;
}

.pricing-price[b-qp0jc9thn9] {
    font-size: 24px;
    font-weight: 800;
    margin: 4px 0 2px;
    color: var(--landing-strong);
}

.landing-page.theme-dark .pricing-price[b-qp0jc9thn9] {
    color: var(--landing-text);
}

.pricing-badge[b-qp0jc9thn9] {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.26);
    color: var(--landing-accent-2);
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.pricing-features[b-qp0jc9thn9] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pricing-features li[b-qp0jc9thn9] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    color: var(--landing-strong);
    line-height: 1.45;
}

.landing-page.theme-dark .pricing-features li[b-qp0jc9thn9] {
    color: var(--landing-text);
}

.pricing-features li[b-qp0jc9thn9]::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.14);
    color: var(--landing-accent-2);
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.landing-page.theme-dark .pricing-features li[b-qp0jc9thn9]::before {
    background: rgba(246, 167, 0, 0.18);
    color: #ffd166;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.pricing-cta[b-qp0jc9thn9] {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

.faq-list[b-qp0jc9thn9] {
    display: grid;
    gap: 10px;
}

.faq-list details[b-qp0jc9thn9] {
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing-page.theme-light .faq-list details[b-qp0jc9thn9] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.9));
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

.landing-page.theme-dark .faq-list details[b-qp0jc9thn9] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-list details:hover[b-qp0jc9thn9],
.faq-list details:focus-within[b-qp0jc9thn9] {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.16);
}

.faq-list summary[b-qp0jc9thn9] {
    cursor: pointer;
    font-weight: 700;
}

.faq-list p[b-qp0jc9thn9] {
    margin: 8px 0 0;
    color: var(--landing-strong);
}

.contact[b-qp0jc9thn9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.contact-actions[b-qp0jc9thn9] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .landing-topbar[b-qp0jc9thn9] {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
    .landing-brand[b-qp0jc9thn9] { grid-column: 1; grid-row: 1; }
    .landing-menu-toggle[b-qp0jc9thn9] { grid-column: 3; grid-row: 1; }

    .landing-nav[b-qp0jc9thn9] {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .landing-actions[b-qp0jc9thn9] {
        justify-content: flex-start;
    }

    .landing-hero[b-qp0jc9thn9] {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .landing-hero__content[b-qp0jc9thn9] {
        padding: 0;
    }

    .landing-usp--spread[b-qp0jc9thn9] {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        max-width: none;
    }

    .screens-wrap[b-qp0jc9thn9] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-page[b-qp0jc9thn9] {
        padding: 20px 16px 40px;
    }

    .landing-section[b-qp0jc9thn9],
    .landing-topbar[b-qp0jc9thn9] {
        padding: 16px;
    }

    .landing-menu-toggle[b-qp0jc9thn9] {
        display: inline-flex;
    }

    .landing-nav[b-qp0jc9thn9],
    .landing-actions[b-qp0jc9thn9] {
        display: none;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .landing-topbar.nav-open .landing-nav[b-qp0jc9thn9],
    .landing-topbar.nav-open .landing-actions[b-qp0jc9thn9] {
        display: flex;
        width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .landing-nav[b-qp0jc9thn9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .landing-actions[b-qp0jc9thn9] {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .landing-actions .landing-btn[b-qp0jc9thn9],
    .landing-actions .landing-link[b-qp0jc9thn9] {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact[b-qp0jc9thn9] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* _content/Grafio/Features/Landing/Presentation/LandingFooter.razor.rz.scp.css */
.landing-footer[b-5gvf9qhu9e] {
    margin-top: 1.5rem;
    padding: 0.95rem 0;
    border-top: 1px solid var(--border);
    color: var(--text);
    background: var(--surface);
}

.landing-footer__meta[b-5gvf9qhu9e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.landing-footer__links[b-5gvf9qhu9e] {
    display: flex;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.landing-footer__links a[b-5gvf9qhu9e] {
    color: var(--brand-700);
    text-decoration: none;
}

.landing-footer__links a:hover[b-5gvf9qhu9e],
.landing-footer__links a:focus-visible[b-5gvf9qhu9e] {
    text-decoration: underline;
    outline: none;
}

.landing-footer__copy[b-5gvf9qhu9e] {
    color: var(--text);
    font-weight: 600;
}

.landing-footer__cookie[b-5gvf9qhu9e] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-2, #f1f5f9);
    color: var(--brand-700);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.landing-footer__cookie:hover[b-5gvf9qhu9e],
.landing-footer__cookie:focus-visible[b-5gvf9qhu9e] {
    border-color: var(--brand-500);
    color: var(--brand-600, #2563eb);
    text-decoration: none;
    outline: none;
}

.landing-footer__cookie svg[b-5gvf9qhu9e] {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
