/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-b4pjane3tz] {
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.06), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.app-header[b-b4pjane3tz] {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.app-main[b-b4pjane3tz] {
  padding: 1.5rem;
}

.app-content[b-b4pjane3tz] {
  max-width: 1440px;
  margin: 0 auto;
}

#blazor-error-ui[b-b4pjane3tz] {
  color-scheme: light only;
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss[b-b4pjane3tz] {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.app-navbar[b-6rpjqe5hvv] {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.app-brand[b-6rpjqe5hvv] {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
  text-decoration: none;
}

.app-brand-mark[b-6rpjqe5hvv] {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  font-size: 0.95rem;
}

.app-nav[b-6rpjqe5hvv] {
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.app-nav-link[b-6rpjqe5hvv] {
  color: #334155;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
}

.app-nav-link:hover[b-6rpjqe5hvv],
.app-nav-link.active[b-6rpjqe5hvv] {
  color: #0f172a;
  background: rgba(37, 99, 235, 0.08);
}

.app-settings-link[b-6rpjqe5hvv],
.app-notification-link[b-6rpjqe5hvv] {
  display: inline-flex;
  align-items: center;
}

.app-notification-link[b-6rpjqe5hvv] {
  position: relative;
}

.app-notification-link .badge[b-6rpjqe5hvv] {
  топ: 0.25rem !important;
}

.app-toggler[b-6rpjqe5hvv] {
  border: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .app-nav[b-6rpjqe5hvv] {
    margin-bottom: 0.75rem;
  }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jsfo1du64k],
.components-reconnect-repeated-attempt-visible[b-jsfo1du64k],
.components-reconnect-failed-visible[b-jsfo1du64k],
.components-pause-visible[b-jsfo1du64k],
.components-resume-failed-visible[b-jsfo1du64k],
.components-rejoining-animation[b-jsfo1du64k] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-retrying[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-failed[b-jsfo1du64k],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jsfo1du64k] {
    display: block;
}


#components-reconnect-modal[b-jsfo1du64k] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jsfo1du64k 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jsfo1du64k 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jsfo1du64k 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jsfo1du64k]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jsfo1du64k 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jsfo1du64k {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jsfo1du64k {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jsfo1du64k {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jsfo1du64k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jsfo1du64k] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jsfo1du64k] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jsfo1du64k] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jsfo1du64k] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jsfo1du64k] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jsfo1du64k] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jsfo1du64k 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jsfo1du64k] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jsfo1du64k {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ContentEntityTranslations.razor.rz.scp.css */
/* /Components/Pages/ContentTranslations.razor.rz.scp.css */
/* /Components/Partials/NotificationSidebar.razor.rz.scp.css */
.notification-sidebar-backdrop[b-5mcptq1b4i] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    transition: opacity 0.3s ease-in-out;
}

.notification-sidebar-backdrop.open[b-5mcptq1b4i] {
    opacity: 0.5;
    pointer-events: auto;
}

.notification-sidebar[b-5mcptq1b4i] {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.notification-sidebar.open[b-5mcptq1b4i] {
    transform: translateX(0);
}

.sidebar-header[b-5mcptq1b4i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-content[b-5mcptq1b4i] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar-footer[b-5mcptq1b4i] {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.notification-list[b-5mcptq1b4i] {
    display: flex;
    flex-direction: column;
}

.notification-item[b-5mcptq1b4i] {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.notification-item:hover[b-5mcptq1b4i] {
    background-color: #f8f9fa;
}

.notification-item.unread[b-5mcptq1b4i] {
    background-color: #f0f7ff;
}

.notification-header[b-5mcptq1b4i] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.notification-body[b-5mcptq1b4i] {
    margin-bottom: 0.5rem;
}

.notification-body strong[b-5mcptq1b4i] {
    display: block;
    color: #212529;
}

.notification-body p[b-5mcptq1b4i] {
    font-size: 0.875rem;
    color: #495057;
}

.notification-footer[b-5mcptq1b4i] {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 576px) {
    .notification-sidebar[b-5mcptq1b4i] {
        width: 100%;
    }
}
/* /Components/Partials/NotificationToast.razor.rz.scp.css */
/* Minimal CSS - Syncfusion handles the styling */
.e-toast[b-orkguma821] {
    min-width: 320px;
    max-width: 420px;
}

.notification-toast-content[b-orkguma821] {
    padding: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.notification-toast-content:hover[b-orkguma821] {
    opacity: 0.8;
}

.notification-toast-content .fw-bold[b-orkguma821] {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
/* /Components/Partials/NumberOnlyPager.razor.rz.scp.css */
.number-pager[b-syd6ipkk6b] {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pager-btn[b-syd6ipkk6b] {
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
}

.pager-btn.e-btn.e-primary[b-syd6ipkk6b] {
  font-weight: 600;
}

.pager-btn .ellipsis[b-syd6ipkk6b] {
  padding: 0 6px;
  font-weight: 600;
}
/* /Components/Settings/ThemeSettingsSection.razor.rz.scp.css */
.theme-settings-section[b-yf45mritit] {
  border-radius: 1.25rem;
}

.theme-preview[b-yf45mritit] {
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgb(255, 255, 255));
}

.theme-preview-card[b-yf45mritit] {
  border: 1px solid var(--theme-border);
  border-radius: 1rem;
  background: var(--theme-surface);
  color: var(--theme-text);
  padding: 1rem;
}
