/* /Components/RichTextEditor.razor.rz.scp.css */
.rich-editor-root[b-ja3up1f9bl] {
    width: 100%;
}

.rich-editor-shell[b-ja3up1f9bl] {
    overflow: hidden;
}

.editor-toolbar[b-ja3up1f9bl] {
    gap: 4px;
    border-bottom: 1px solid rgba(var(--mud-palette-lines-default-rgb), 0.2);
    background: rgba(var(--mud-palette-surface-rgb), 0.55);
}

.editor-surface[b-ja3up1f9bl] {
    min-height: 320px;
    padding: 16px;
    outline: none;
    line-height: 1.65;
}

.editor-surface:empty[b-ja3up1f9bl]::before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.45);
}

.editor-surface h2[b-ja3up1f9bl],
.editor-surface h3[b-ja3up1f9bl] {
    margin: 1rem 0 0.5rem;
}

.editor-surface p[b-ja3up1f9bl],
.editor-surface ul[b-ja3up1f9bl],
.editor-surface ol[b-ja3up1f9bl],
.editor-surface blockquote[b-ja3up1f9bl],
.editor-surface pre[b-ja3up1f9bl] {
    margin: 0.75rem 0;
}

.editor-surface blockquote[b-ja3up1f9bl] {
    border-left: 4px solid var(--mud-palette-primary);
    padding-left: 12px;
    opacity: 0.9;
}

.editor-surface pre[b-ja3up1f9bl] {
    padding: 12px;
    border-radius: 10px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.22);
}

@media (max-width: 700px) {
    .editor-surface[b-ja3up1f9bl] {
        min-height: 240px;
        padding: 12px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-eykz2ima9t] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-eykz2ima9t] {
    flex: 1;
}

.sidebar[b-eykz2ima9t] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-eykz2ima9t] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-eykz2ima9t]  a, .top-row[b-eykz2ima9t]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-eykz2ima9t]  a:hover, .top-row[b-eykz2ima9t]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-eykz2ima9t]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-eykz2ima9t] {
        justify-content: space-between;
    }

    .top-row[b-eykz2ima9t]  a, .top-row[b-eykz2ima9t]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-eykz2ima9t] {
        flex-direction: row;
    }

    .sidebar[b-eykz2ima9t] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-eykz2ima9t] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-eykz2ima9t]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-eykz2ima9t], article[b-eykz2ima9t] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/BlogCalendarComponent.razor.rz.scp.css */
.calendar-panel[b-ofe8l8fyu2],
.overview-panel[b-ofe8l8fyu2] {
    width: 100%;
    box-sizing: border-box;
}

.calendar-header[b-ofe8l8fyu2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-grid[b-ofe8l8fyu2] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.calendar-day-header[b-ofe8l8fyu2] {
    text-align: center;
    font-weight: 600;
    opacity: 0.8;
    font-size: 0.85rem;
}

.calendar-day[b-ofe8l8fyu2] {
    position: relative;
    width: 100%;
    height: 52px;
    border-radius: 12px !important;
}

.calendar-day.other-month[b-ofe8l8fyu2] {
    opacity: 0.38;
}

.calendar-day.selected[b-ofe8l8fyu2] {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-primary-darken) 100%);
    color: #fff !important;
}

.calendar-day.has-items[b-ofe8l8fyu2] {
    border: 1px solid rgba(var(--mud-palette-primary-rgb), 0.35);
}

.day-num[b-ofe8l8fyu2] {
    font-size: 0.92rem;
}

.dot[b-ofe8l8fyu2] {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mud-palette-secondary);
}

.item-count[b-ofe8l8fyu2] {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.68rem;
    font-weight: 700;
}

.event-card[b-ofe8l8fyu2] {
    border-left: 4px solid var(--mud-palette-primary);
}

.event-row[b-ofe8l8fyu2] {
    gap: 12px;
}

.event-content[b-ofe8l8fyu2] {
    min-width: 0;
}

.event-meta[b-ofe8l8fyu2] {
    display: block;
    margin-top: 6px;
}

.month-day-card[b-ofe8l8fyu2] {
    background: rgba(var(--mud-palette-surface-rgb), 0.45);
    border: 1px solid rgba(var(--mud-palette-lines-default-rgb), 0.18);
}

.month-line[b-ofe8l8fyu2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px dashed rgba(var(--mud-palette-lines-default-rgb), 0.2);
}

.month-line:first-of-type[b-ofe8l8fyu2] {
    border-top: 0;
    padding-top: 0;
}

.month-time[b-ofe8l8fyu2] {
    min-width: 48px;
    font-weight: 600;
    opacity: 0.85;
}

.month-title[b-ofe8l8fyu2] {
    flex: 1;
    min-width: 0;
}

.empty-state[b-ofe8l8fyu2] {
    opacity: 0.75;
}

@media (max-width: 700px) {
    .calendar-grid[b-ofe8l8fyu2] {
        gap: 4px;
    }

    .calendar-day[b-ofe8l8fyu2] {
        height: 42px;
        border-radius: 10px !important;
    }

    .calendar-day-header[b-ofe8l8fyu2] {
        font-size: 0.72rem;
    }

    .day-num[b-ofe8l8fyu2] {
        font-size: 0.8rem;
    }

    .mobile-overview[b-ofe8l8fyu2],
    .event-row[b-ofe8l8fyu2],
    .month-line[b-ofe8l8fyu2] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .month-time[b-ofe8l8fyu2] {
        min-width: unset;
    }
}
/* /Pages/BlogComponent.razor.rz.scp.css */
.blog-page[b-pg9onv5e1j] {
    overflow-x: auto;
}

.mobile-header-stack[b-pg9onv5e1j] {
    gap: 12px;
}

.actions-cell[b-pg9onv5e1j] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-pg9onv5e1j] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-pg9onv5e1j] {
        width: 100%;
    }
}
/* /Pages/BlogPostDialog.razor.rz.scp.css */
.dialog-form-meta[b-9tny5m4lqo] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
/* /Pages/CategoryComponent.razor.rz.scp.css */
.mobile-header-stack[b-mgz43gnm0e] {
    gap: 12px;
}

.actions-cell[b-mgz43gnm0e] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-mgz43gnm0e] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-mgz43gnm0e] {
        width: 100%;
    }

    .mobile-actions[b-mgz43gnm0e] {
        flex-direction: column !important;
    }
}
/* /Pages/Home2.razor.rz.scp.css */
.home2-shell[b-qulutp4e3z] {
    --home2-ink: #f8f5ff;
    --home2-muted: rgba(248, 245, 255, 0.72);
    --home2-border: rgba(255, 255, 255, 0.14);
    --home2-surface: rgba(14, 19, 42, 0.58);
    --home2-surface-strong: rgba(19, 24, 54, 0.82);
    --home2-shadow: 0 24px 80px rgba(3, 7, 24, 0.34);
    min-height: 100%;
    padding: 28px 18px 48px;
    color: var(--home2-ink);
    background:
        radial-gradient(circle at top left, rgba(255, 109, 160, 0.32), transparent 28%),
        radial-gradient(circle at top right, rgba(73, 168, 255, 0.24), transparent 26%),
        linear-gradient(135deg, #0d1025 0%, #11162e 32%, #16224d 62%, #10293e 100%);
}

.home2-hero[b-qulutp4e3z],
.home2-card[b-qulutp4e3z] {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--home2-border);
    background: var(--home2-surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--home2-shadow);
}

.home2-hero[b-qulutp4e3z] {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto 28px;
    padding: 34px;
    border-radius: 30px;
}

.home2-aurora[b-qulutp4e3z] {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.85;
    pointer-events: none;
}

.home2-aurora-one[b-qulutp4e3z] {
    top: -52px;
    right: 22%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 95, 143, 0.56) 0%, transparent 72%);
}

.home2-aurora-two[b-qulutp4e3z] {
    right: -36px;
    bottom: -44px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(55, 184, 255, 0.44) 0%, transparent 72%);
}

.home2-hero-copy[b-qulutp4e3z],
.home2-hero-panel[b-qulutp4e3z] {
    position: relative;
    z-index: 1;
}

.home2-kicker[b-qulutp4e3z],
.home2-section-kicker[b-qulutp4e3z],
.home2-panel-label[b-qulutp4e3z],
.home2-stat-label[b-qulutp4e3z] {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.64);
}

.home2-hero-copy h1[b-qulutp4e3z] {
    margin: 16px 0 14px;
    max-width: 12ch;
    font-size: clamp(2.2rem, 4.6vw, 4.3rem);
    line-height: 0.98;
    font-weight: 800;
}

.home2-hero-copy p[b-qulutp4e3z],
.home2-story p[b-qulutp4e3z],
.home2-post-summary[b-qulutp4e3z],
.home2-quick-desc[b-qulutp4e3z],
.home2-stat-note[b-qulutp4e3z],
.home2-empty[b-qulutp4e3z],
.home2-modal-summary[b-qulutp4e3z] {
    color: var(--home2-muted);
}

.home2-hero-copy p[b-qulutp4e3z] {
    max-width: 60ch;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

.home2-hero-actions[b-qulutp4e3z] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home2-primary-btn[b-qulutp4e3z],
.home2-secondary-btn[b-qulutp4e3z],
.home2-link-btn[b-qulutp4e3z],
.home2-post-row[b-qulutp4e3z],
.home2-quick-card[b-qulutp4e3z],
.home2-modal-close[b-qulutp4e3z] {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.home2-primary-btn[b-qulutp4e3z],
.home2-secondary-btn[b-qulutp4e3z],
.home2-link-btn[b-qulutp4e3z],
.home2-modal-close[b-qulutp4e3z] {
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
}

.home2-primary-btn[b-qulutp4e3z] {
    border: 0;
    color: #101634;
    background: linear-gradient(135deg, #ffdb77 0%, #ff8da1 100%);
}

.home2-secondary-btn[b-qulutp4e3z],
.home2-link-btn[b-qulutp4e3z],
.home2-modal-close[b-qulutp4e3z] {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--home2-ink);
    background: rgba(255, 255, 255, 0.06);
}

.home2-primary-btn:hover[b-qulutp4e3z],
.home2-secondary-btn:hover[b-qulutp4e3z],
.home2-link-btn:hover[b-qulutp4e3z],
.home2-post-row:hover[b-qulutp4e3z],
.home2-quick-card:hover[b-qulutp4e3z],
.home2-modal-close:hover[b-qulutp4e3z] {
    transform: translateY(-1px);
}

.home2-hero-panel[b-qulutp4e3z] {
    display: grid;
    gap: 16px;
}

.home2-panel-card[b-qulutp4e3z],
.home2-stat-card[b-qulutp4e3z] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: var(--home2-surface-strong);
}

.home2-panel-card[b-qulutp4e3z] {
    padding: 20px;
}

.home2-role-list[b-qulutp4e3z] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.home2-role-pill[b-qulutp4e3z] {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
}

.home2-panel-grid[b-qulutp4e3z] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home2-stat-card[b-qulutp4e3z] {
    padding: 20px;
}

.home2-stat-card-accent[b-qulutp4e3z] {
    background:
        linear-gradient(160deg, rgba(54, 197, 255, 0.22), rgba(255, 255, 255, 0.06)),
        var(--home2-surface-strong);
}

.home2-stat-value[b-qulutp4e3z] {
    margin-top: 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.home2-grid[b-qulutp4e3z] {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    gap: 22px;
    max-width: 1320px;
    margin: 0 auto;
}

.home2-card[b-qulutp4e3z] {
    padding: 26px;
    border-radius: 28px;
}

.home2-card-wide[b-qulutp4e3z] {
    grid-row: span 2;
}

.home2-section-head[b-qulutp4e3z] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 22px;
}

.home2-section-head h2[b-qulutp4e3z] {
    margin: 10px 0 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.home2-post-list[b-qulutp4e3z],
.home2-quick-grid[b-qulutp4e3z] {
    display: grid;
    gap: 12px;
}

.home2-post-row[b-qulutp4e3z],
.home2-quick-card[b-qulutp4e3z] {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.home2-post-row[b-qulutp4e3z] {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-radius: 20px;
}

.home2-post-date[b-qulutp4e3z] {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.66);
    white-space: nowrap;
}

.home2-post-title[b-qulutp4e3z],
.home2-quick-title[b-qulutp4e3z] {
    font-size: 1.02rem;
    font-weight: 700;
}

.home2-post-summary[b-qulutp4e3z] {
    margin-top: 6px;
    line-height: 1.55;
}

.home2-quick-grid[b-qulutp4e3z] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home2-quick-card[b-qulutp4e3z] {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
}

.home2-story p[b-qulutp4e3z] {
    margin: 0 0 14px;
    line-height: 1.72;
}

.home2-modal-backdrop[b-qulutp4e3z] {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 14px;
    background: rgba(5, 10, 26, 0.72);
    backdrop-filter: blur(8px);
}

.home2-modal[b-qulutp4e3z] {
    width: min(960px, 100%);
    max-height: 88vh;
    overflow: auto;
    border-radius: 28px;
    padding: 26px;
    color: #15233b;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.home2-modal-header[b-qulutp4e3z] {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
}

.home2-modal-header h3[b-qulutp4e3z] {
    margin: 8px 0 8px;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    line-height: 1.08;
}

.home2-modal-date[b-qulutp4e3z] {
    color: #617390;
    font-size: 0.9rem;
}

.home2-modal-body[b-qulutp4e3z] {
    color: #243650;
    line-height: 1.75;
}

.home2-modal-body :global(p)[b-qulutp4e3z],
.home2-modal-body :global(ul)[b-qulutp4e3z],
.home2-modal-body :global(ol)[b-qulutp4e3z],
.home2-modal-body :global(blockquote)[b-qulutp4e3z],
.home2-modal-body :global(pre)[b-qulutp4e3z],
.home2-modal-body :global(h1)[b-qulutp4e3z],
.home2-modal-body :global(h2)[b-qulutp4e3z],
.home2-modal-body :global(h3)[b-qulutp4e3z] {
    margin-top: 0;
    margin-bottom: 16px;
}

.home2-modal-body :global(img)[b-qulutp4e3z] {
    max-width: 100%;
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .home2-hero[b-qulutp4e3z],
    .home2-grid[b-qulutp4e3z] {
        grid-template-columns: 1fr;
    }

    .home2-card-wide[b-qulutp4e3z] {
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .home2-shell[b-qulutp4e3z] {
        padding: 18px 12px 32px;
    }

    .home2-hero[b-qulutp4e3z],
    .home2-card[b-qulutp4e3z],
    .home2-modal[b-qulutp4e3z] {
        padding: 20px;
        border-radius: 22px;
    }

    .home2-panel-grid[b-qulutp4e3z],
    .home2-quick-grid[b-qulutp4e3z] {
        grid-template-columns: 1fr;
    }

    .home2-post-row[b-qulutp4e3z] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home2-post-date[b-qulutp4e3z] {
        white-space: normal;
    }

    .home2-section-head[b-qulutp4e3z],
    .home2-modal-header[b-qulutp4e3z] {
        flex-direction: column;
    }

    .home2-link-btn[b-qulutp4e3z],
    .home2-modal-close[b-qulutp4e3z],
    .home2-primary-btn[b-qulutp4e3z],
    .home2-secondary-btn[b-qulutp4e3z] {
        width: 100%;
    }
}
/* /Pages/LoginComponent.razor.rz.scp.css */
.login-shell[b-c379zmvyur] {
    min-height: calc(100vh - 2rem);
    position: relative;
    overflow: hidden;
    padding: 24px 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-backdrop[b-c379zmvyur] {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(61, 114, 255, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(31, 198, 150, 0.22), transparent 32%),
        linear-gradient(135deg, #0a1624 0%, #11263b 52%, #163655 100%);
}

.login-layout[b-c379zmvyur] {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
    gap: 28px;
    align-items: stretch;
}

.login-intro[b-c379zmvyur] {
    color: #eff6ff;
    padding: 28px 10px 28px 6px;
    align-self: center;
}

.login-intro h1[b-c379zmvyur] {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.login-intro p[b-c379zmvyur] {
    margin: 0;
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(239, 246, 255, 0.82);
}

.intro-badge[b-c379zmvyur] {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-points[b-c379zmvyur] {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.intro-point[b-c379zmvyur] {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 20, 34, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.point-title[b-c379zmvyur] {
    font-size: 0.98rem;
    font-weight: 700;
}

.point-text[b-c379zmvyur] {
    color: rgba(239, 246, 255, 0.74);
    line-height: 1.5;
}

.login-card[b-c379zmvyur] {
    border-radius: 28px;
    padding: 28px;
    background: rgba(247, 250, 252, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.login-card-header[b-c379zmvyur] {
    margin-bottom: 22px;
}

.login-card-header h2[b-c379zmvyur] {
    margin: 6px 0 10px;
    font-size: 2rem;
    line-height: 1.1;
    color: #10243a;
}

.login-card-header p[b-c379zmvyur] {
    margin: 0;
    color: #4b647b;
    line-height: 1.6;
}

.card-kicker[b-c379zmvyur] {
    color: #2356d8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-form[b-c379zmvyur] {
    display: grid;
    gap: 10px;
}

.login-error[b-c379zmvyur] {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fdecec;
    color: #9f2332;
    border: 1px solid #f3c2c8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.login-submit[b-c379zmvyur] {
    margin-top: 8px;
    min-height: 50px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.login-submit-content[b-c379zmvyur] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.login-spinner[b-c379zmvyur] {
    color: inherit;
}

:global(.login-form .validation-message)[b-c379zmvyur],
:global(.login-form .validation-errors)[b-c379zmvyur],
:global(.login-form .validation-message.valid)[b-c379zmvyur],
:global(.login-form .validation-message.invalid)[b-c379zmvyur] {
    color: #b42318;
    font-size: 0.86rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .login-layout[b-c379zmvyur] {
        grid-template-columns: 1fr;
    }

    .login-intro[b-c379zmvyur] {
        padding: 8px 2px 0;
    }

    .login-card[b-c379zmvyur] {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .login-shell[b-c379zmvyur] {
        min-height: calc(100vh - 1rem);
        padding: 12px 12px 24px;
        align-items: flex-start;
    }

    .login-layout[b-c379zmvyur] {
        gap: 18px;
    }

    .login-intro h1[b-c379zmvyur] {
        font-size: 1.9rem;
    }

    .login-intro p[b-c379zmvyur] {
        font-size: 0.96rem;
    }

    .intro-points[b-c379zmvyur] {
        gap: 10px;
        margin-top: 18px;
    }

    .intro-point[b-c379zmvyur] {
        padding: 14px;
        border-radius: 16px;
    }

    .login-card[b-c379zmvyur] {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .login-card-header h2[b-c379zmvyur] {
        font-size: 1.6rem;
    }
}
/* /Pages/PhotoAlbumComponent.razor.rz.scp.css */
.photo-album-page[b-ead389760b] {
    max-width: 1200px;
    margin: 0 auto;
}

.album-page-header[b-ead389760b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.album-page-title[b-ead389760b] {
    text-align: right;
}

.album-state[b-ead389760b] {
    min-height: 260px;
    display: grid;
    place-items: center;
    gap: 14px;
}

.subalbum-grid[b-ead389760b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.subalbum-card[b-ead389760b] {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    text-align: left;
}

.subalbum-cover[b-ead389760b] {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
}

.subalbum-cover img[b-ead389760b] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.subalbum-meta[b-ead389760b] {
    padding: 14px;
}

.subalbum-title[b-ead389760b] {
    font-size: 1rem;
    font-weight: 700;
}

.subalbum-subtitle[b-ead389760b] {
    margin-top: 4px;
    opacity: 0.72;
}

.photo-grid[b-ead389760b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.photo-tile[b-ead389760b] {
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.photo-tile img[b-ead389760b] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.photo-tile:hover img[b-ead389760b] {
    transform: scale(1.03);
}

.viewer-backdrop[b-ead389760b] {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.viewer-shell[b-ead389760b] {
    width: min(1200px, 100%);
    max-height: calc(100vh - 36px);
    display: grid;
    gap: 14px;
}

.viewer-toolbar[b-ead389760b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
}

.viewer-title[b-ead389760b] {
    font-size: 1.15rem;
    font-weight: 700;
}

.viewer-subtitle[b-ead389760b] {
    opacity: 0.72;
    word-break: break-word;
}

.viewer-actions[b-ead389760b] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.viewer-btn[b-ead389760b] {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.viewer-btn:disabled[b-ead389760b] {
    opacity: 0.45;
    cursor: default;
}

.viewer-close[b-ead389760b] {
    background: rgba(255, 255, 255, 0.22);
}

.viewer-image-wrap[b-ead389760b] {
    min-height: 0;
    display: grid;
    place-items: center;
}

.viewer-image[b-ead389760b] {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 18px;
    display: block;
}

@media (max-width: 700px) {
    .album-page-header[b-ead389760b] {
        align-items: start;
        flex-direction: column;
    }

    .album-page-title[b-ead389760b] {
        text-align: left;
    }

    .photo-grid[b-ead389760b] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .subalbum-grid[b-ead389760b] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .viewer-toolbar[b-ead389760b] {
        flex-direction: column;
        align-items: stretch;
    }

    .viewer-actions[b-ead389760b] {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .viewer-btn[b-ead389760b] {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
/* /Pages/PhotosAlbumsComponent.razor.rz.scp.css */
.photos-page[b-0afenpbniv] {
    max-width: 1100px;
    margin: 0 auto;
}

.photos-header[b-0afenpbniv] {
    margin-bottom: 20px;
}

.photos-path[b-0afenpbniv] {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.photos-path-label[b-0afenpbniv] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

.photos-path-value[b-0afenpbniv] {
    margin-top: 6px;
    font-size: 0.95rem;
    line-height: 1.45;
    word-break: break-word;
}

.photos-state[b-0afenpbniv] {
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 14px;
}

.album-list[b-0afenpbniv] {
    display: grid;
    gap: 14px;
}

.album-row[b-0afenpbniv] {
    width: 100%;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.album-row:hover[b-0afenpbniv] {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
}

.album-cover[b-0afenpbniv] {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.album-cover img[b-0afenpbniv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-meta[b-0afenpbniv] {
    min-width: 0;
}

.album-title[b-0afenpbniv] {
    font-size: 1.08rem;
    font-weight: 700;
}

.album-subtitle[b-0afenpbniv] {
    margin-top: 4px;
    opacity: 0.75;
}

.album-chevron[b-0afenpbniv] {
    white-space: nowrap;
    font-weight: 700;
    color: #8cc8ff;
}

@media (max-width: 700px) {
    .album-row[b-0afenpbniv] {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }

    .album-chevron[b-0afenpbniv] {
        grid-column: 2;
        font-size: 0.9rem;
    }
}
/* /Pages/ProjectsComponent.razor.rz.scp.css */
.mobile-header-stack[b-7az0tk2xn5] {
    gap: 12px;
}

.actions-cell[b-7az0tk2xn5] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-7az0tk2xn5] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-7az0tk2xn5] {
        width: 100%;
    }

    .mobile-actions[b-7az0tk2xn5] {
        flex-direction: column !important;
    }
}
/* /Pages/ReportsComponent.razor.rz.scp.css */
@media (max-width: 700px) {
    .mud-table-dense * .mud-table-row .mud-table-cell[b-b0klezv3gr] {
        padding: 6px 0;
    }
}
/* /Pages/RoleComponent.razor.rz.scp.css */
.mobile-header-stack[b-wkpoz0s5iv] {
    gap: 12px;
}

.actions-cell[b-wkpoz0s5iv] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-wkpoz0s5iv] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-wkpoz0s5iv] {
        width: 100%;
    }

    .mobile-actions[b-wkpoz0s5iv] {
        flex-direction: column !important;
    }
}
/* /Pages/TagComponent.razor.rz.scp.css */
.mobile-header-stack[b-7wngjn4yjc] {
    gap: 12px;
}

.actions-cell[b-7wngjn4yjc] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-7wngjn4yjc] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-7wngjn4yjc] {
        width: 100%;
    }

    .mobile-actions[b-7wngjn4yjc] {
        flex-direction: column !important;
    }
}
/* /Pages/TaskItemsComponent.razor.rz.scp.css */
.task-header-stack[b-k4tc277fzh],
.task-overview-row[b-k4tc277fzh],
.task-card-row[b-k4tc277fzh] {
    gap: 12px;
}

.task-calendar-panel[b-k4tc277fzh],
.task-list-panel[b-k4tc277fzh] {
    width: 100%;
    box-sizing: border-box;
}

.task-calendar-header[b-k4tc277fzh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--mud-palette-lines-default-rgb), 0.22);
}

.task-calendar-grid[b-k4tc277fzh] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.task-calendar-day-header[b-k4tc277fzh] {
    text-align: center;
    font-weight: 600;
    opacity: 0.8;
    font-size: 0.85rem;
}

.task-calendar-day[b-k4tc277fzh] {
    position: relative;
    width: 100%;
    height: 52px;
    border-radius: 8px !important;
}

.task-calendar-day.other-month[b-k4tc277fzh] {
    opacity: 0.38;
}

.task-calendar-day.selected[b-k4tc277fzh] {
    background: var(--mud-palette-primary);
    color: #fff !important;
}

.task-calendar-day.has-items[b-k4tc277fzh] {
    border: 1px solid rgba(var(--mud-palette-primary-rgb), 0.4);
}

.task-day-num[b-k4tc277fzh] {
    font-size: 0.92rem;
}

.task-dot[b-k4tc277fzh] {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mud-palette-secondary);
}

.task-item-count[b-k4tc277fzh] {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.68rem;
    font-weight: 700;
}

.task-card[b-k4tc277fzh] {
    border-left: 4px solid var(--mud-palette-primary);
}

.task-card-content[b-k4tc277fzh] {
    min-width: 0;
}

.task-meta[b-k4tc277fzh] {
    display: block;
    margin-top: 6px;
}

.task-actions[b-k4tc277fzh] {
    white-space: nowrap;
}

.task-empty-state[b-k4tc277fzh] {
    opacity: 0.75;
}

@media (max-width: 700px) {
    .task-header-stack[b-k4tc277fzh],
    .task-overview-row[b-k4tc277fzh],
    .task-card-row[b-k4tc277fzh],
    .task-editor-actions[b-k4tc277fzh] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .task-full-button[b-k4tc277fzh] {
        width: 100%;
    }

    .task-calendar-grid[b-k4tc277fzh] {
        gap: 4px;
    }

    .task-calendar-day[b-k4tc277fzh] {
        height: 42px;
    }

    .task-calendar-day-header[b-k4tc277fzh] {
        font-size: 0.72rem;
    }

    .task-day-num[b-k4tc277fzh] {
        font-size: 0.8rem;
    }
}
/* /Pages/TaskItemsListComponent.razor.rz.scp.css */
.task-list-header[b-1ow49pmywa],
.task-list-filter-actions[b-1ow49pmywa] {
    gap: 12px;
}

.task-list-actions[b-1ow49pmywa] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .task-list-header[b-1ow49pmywa],
    .task-list-filter-actions[b-1ow49pmywa],
    .task-list-editor-actions[b-1ow49pmywa] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .task-list-full-button[b-1ow49pmywa] {
        width: 100%;
    }
}
/* /Pages/TennisDoublesMatchesComponent.razor.rz.scp.css */
.mobile-header-stack[b-geglajgi8a] {
    gap: 12px;
}

.mobile-header-actions[b-geglajgi8a] {
    gap: 8px;
}

.actions-cell[b-geglajgi8a] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-geglajgi8a] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-header-actions[b-geglajgi8a] {
        width: 100%;
        flex-direction: column !important;
    }

    .mobile-full-btn[b-geglajgi8a] {
        width: 100%;
    }

    .mobile-actions[b-geglajgi8a] {
        flex-direction: column !important;
    }
}
/* /Pages/TennisMatchDaysComponent.razor.rz.scp.css */
.mobile-header-stack[b-hz9qjonxpm] {
    gap: 12px;
}

.actions-cell[b-hz9qjonxpm] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-hz9qjonxpm] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-hz9qjonxpm] {
        width: 100%;
    }

    .mobile-actions[b-hz9qjonxpm] {
        flex-direction: column !important;
    }
}
/* /Pages/TennisMatchSetsComponent.razor.rz.scp.css */
.mobile-header-stack[b-aeczwv5yz3] {
    gap: 12px;
}

.actions-cell[b-aeczwv5yz3] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-aeczwv5yz3] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-aeczwv5yz3] {
        width: 100%;
    }

    .mobile-actions[b-aeczwv5yz3] {
        flex-direction: column !important;
    }
}
/* /Pages/TennisPlayersComponent.razor.rz.scp.css */
.mobile-header-stack[b-reubanrrjw] {
    gap: 12px;
}

.actions-cell[b-reubanrrjw] {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .mobile-header-stack[b-reubanrrjw] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-full-btn[b-reubanrrjw] {
        width: 100%;
    }

    .mobile-actions[b-reubanrrjw] {
        flex-direction: column !important;
    }
}
/* /Pages/TennisResultsCalendarComponent.razor.rz.scp.css */
.calendar-panel[b-cm5rfyju76] {
    width: 100%;
    box-sizing: border-box;
}

.calendar-header[b-cm5rfyju76] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-grid[b-cm5rfyju76] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.calendar-day-header[b-cm5rfyju76] {
    text-align: center;
    font-weight: 600;
    opacity: 0.8;
    font-size: 0.85rem;
}

.calendar-day[b-cm5rfyju76] {
    position: relative;
    width: 100%;
    height: 46px;
    border-radius: 12px !important;
}

.calendar-day.other-month[b-cm5rfyju76] {
    opacity: 0.4;
}

.calendar-day.selected[b-cm5rfyju76] {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, var(--mud-palette-primary-darken) 100%);
    color: #fff !important;
}

.day-num[b-cm5rfyju76] {
    font-size: 0.92rem;
}

.dot[b-cm5rfyju76] {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mud-palette-secondary);
}

.event-card[b-cm5rfyju76] {
    border-left: 4px solid var(--mud-palette-primary);
}

.match-text[b-cm5rfyju76] {
    min-width: 0;
    word-break: break-word;
}

.match-meta[b-cm5rfyju76] {
    margin-bottom: 2px;
    font-size: 0.78rem;
    opacity: 0.72;
}

.empty-state[b-cm5rfyju76] {
    opacity: 0.75;
}

@media (max-width: 700px) {
    .calendar-grid[b-cm5rfyju76] {
        gap: 4px;
    }

    .calendar-day[b-cm5rfyju76] {
        height: 40px;
        border-radius: 10px !important;
    }

    .calendar-day-header[b-cm5rfyju76] {
        font-size: 0.72rem;
    }

    .day-num[b-cm5rfyju76] {
        font-size: 0.8rem;
    }

    .match-row[b-cm5rfyju76] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}
/* /Pages/WynikiTenis.razor.rz.scp.css */
.stats-hero[b-3huhbbxf8j] {
    background:
        radial-gradient(circle at 10% 20%, rgba(119, 221, 119, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(80, 200, 120, 0.25) 0%, transparent 40%),
        linear-gradient(135deg, rgba(15, 45, 24, 0.95) 0%, rgba(16, 83, 43, 0.92) 100%);
    border: 1px solid rgba(140, 255, 186, 0.2);
    border-radius: 18px;
}

.hero-title[b-3huhbbxf8j] {
    color: #f3fff5;
    font-weight: 800;
}

.hero-subtitle[b-3huhbbxf8j] {
    color: rgba(235, 255, 238, 0.85);
}

.kpi-card[b-3huhbbxf8j] {
    border-radius: 14px;
    border: 1px solid rgba(123, 255, 184, 0.2);
    min-height: 116px;
}

.kpi-matches[b-3huhbbxf8j] {
    background: linear-gradient(135deg, rgba(18, 64, 45, 0.9) 0%, rgba(32, 110, 70, 0.92) 100%);
}

.kpi-sets[b-3huhbbxf8j] {
    background: linear-gradient(135deg, rgba(23, 49, 82, 0.9) 0%, rgba(34, 89, 142, 0.92) 100%);
}

.kpi-games[b-3huhbbxf8j] {
    background: linear-gradient(135deg, rgba(77, 46, 16, 0.9) 0%, rgba(138, 84, 31, 0.92) 100%);
}

.kpi-leader[b-3huhbbxf8j] {
    background: linear-gradient(135deg, rgba(82, 35, 24, 0.9) 0%, rgba(150, 55, 33, 0.92) 100%);
}

.stats-board[b-3huhbbxf8j] {
    border: 1px solid rgba(125, 255, 191, 0.12);
    border-radius: 16px;
}

.board-header[b-3huhbbxf8j] {
    gap: 12px;
}

.player-avatar[b-3huhbbxf8j] {
    background: linear-gradient(135deg, #89f7a1 0%, #36d67c 100%);
    color: #143724;
    font-weight: 800;
}

@media (max-width: 700px) {
    .hero-title[b-3huhbbxf8j] {
        font-size: 1.55rem;
    }

    .hero-subtitle[b-3huhbbxf8j] {
        font-size: 0.95rem;
    }

    .kpi-card[b-3huhbbxf8j] {
        min-height: auto;
    }

    .board-header[b-3huhbbxf8j] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}
