/* ============================================================
   ACCOUNTING SAAS — BACKOFFICE UI
   Premium Design System | Mobile-First | Dark Sidebar
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    --bo-sidebar-bg:       #0f172a;
    --bo-sidebar-hover:    #1e293b;
    --bo-sidebar-active:   rgba(99, 102, 241, 0.18);
    --bo-sidebar-border:   rgba(148,163,184,0.12);
    --bo-sidebar-width:    260px;

    --bo-accent:           #6366f1;
    --bo-accent-dark:      #4f46e5;
    --bo-accent-soft:      rgba(99, 102, 241, 0.1);
    --bo-accent-glow:      rgba(99, 102, 241, 0.25);

    --bo-success:          #10b981;
    --bo-warning:          #f59e0b;
    --bo-danger:           #ef4444;
    --bo-info:             #3b82f6;

    --bo-bg:               #f1f5f9;
    --bo-card:             #ffffff;
    --bo-border:           #e2e8f0;
    --bo-text:             #0f172a;
    --bo-text-muted:       #64748b;
    --bo-text-light:       #94a3b8;

    --bo-topbar-h:         68px;
    --bo-radius:           14px;
    --bo-radius-sm:        10px;
    --font:                'Inter', system-ui, -apple-system, sans-serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    font-family: var(--font);
    background: var(--bo-bg);
    color: var(--bo-text);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
}

/* ============================================================
   LAYOUT — SHELL
   ============================================================ */

.bo-shell {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.bo-sidebar {
    width: var(--bo-sidebar-width);
    background: var(--bo-sidebar-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    flex-shrink: 0;
}

/* Brand */
.bo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: var(--bo-topbar-h);
    border-bottom: 1px solid var(--bo-sidebar-border);
    text-decoration: none;
    flex-shrink: 0;
}

.bo-brand-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--bo-accent) 0%, #818cf8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}

.bo-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.bo-brand-text span:first-child { font-size: 0.875rem; font-weight: 700; color: #f1f5f9; }
.bo-brand-text span:last-child  { font-size: 0.68rem;  font-weight: 500; color: #64748b; letter-spacing: 0.04em; text-transform: uppercase; }

/* Close button (mobile only) */
.bo-sidebar-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    display: none;
    line-height: 1;
}

/* Nav sections */
.bo-nav-wrap {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.05) transparent;
}

.bo-nav-section {
    font-size: 0.65rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 20px 20px 6px;
}

.bo-nav-item { padding: 2px 12px; }

.bo-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.18s ease;
    cursor: pointer;
}

.bo-nav-link:hover {
    background: var(--bo-sidebar-hover);
    color: #e2e8f0;
}

.bo-nav-link.active {
    background: var(--bo-sidebar-active);
    color: #a5b4fc;
    border: 1px solid rgba(99,102,241,0.25);
    font-weight: 600;
}

.bo-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.bo-nav-link.disabled-link {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Sidebar footer */
.bo-sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--bo-sidebar-border);
    flex-shrink: 0;
}

.bo-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,0.12);
    color: #818cf8;
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.bo-env-label {
    margin-top: 6px;
    font-size: 0.68rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bo-env-dot {
    width: 6px;
    height: 6px;
    background: var(--bo-success);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--bo-success);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */

.bo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99;
    backdrop-filter: blur(2px);
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

.bo-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Fixed sidebar is out of flow — constrain width explicitly */
    width: calc(100% - var(--bo-sidebar-width));
    margin-left: var(--bo-sidebar-width);
    background: var(--bo-bg);
    overflow-x: hidden;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.bo-topbar {
    height: var(--bo-topbar-h);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bo-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 50;
    gap: 12px;
}

.bo-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--bo-border);
    border-radius: 8px;
    padding: 6px 10px;
    color: var(--bo-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.bo-hamburger:hover { background: var(--bo-bg); color: var(--bo-accent); }

.bo-topbar-title   { font-size: 1rem;  font-weight: 700; color: var(--bo-text); margin: 0; line-height: 1.2; }
.bo-topbar-sub     { font-size: 0.7rem; color: var(--bo-text-muted); }

.bo-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bo-role-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.08);
    color: #047857;
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.bo-avatar {
    width: 36px;
    height: 36px;
    background: var(--bo-accent-soft);
    border: 2px solid var(--bo-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bo-accent);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bo-avatar:hover { background: var(--bo-accent); color: white; }

/* Page content */
.bo-content {
    flex: 1;
    padding: 28px;
    animation: pageIn 0.35s ease-out;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.bo-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.bo-page-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--bo-text);
    margin: 0;
    line-height: 1.2;
}

.bo-page-sub {
    font-size: 0.8rem;
    color: var(--bo-text-muted);
    margin-top: 2px;
}

/* ============================================================
   CARDS
   ============================================================ */

.bo-card {
    background: var(--bo-card);
    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s;
}

.bo-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

/* KPI Cards */
.bo-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.bo-kpi {
    background: var(--bo-card);
    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.bo-kpi::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bo-accent) 0%, #818cf8 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bo-kpi:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: var(--bo-accent);
}

.bo-kpi:hover::before { opacity: 1; }

.bo-kpi-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bo-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.bo-kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bo-text);
    line-height: 1;
    margin-bottom: 4px;
}

.bo-kpi-desc {
    font-size: 0.75rem;
    color: var(--bo-text-muted);
}

.bo-kpi-icon {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 1.75rem;
    opacity: 0.1;
    color: var(--bo-accent);
}

/* ============================================================
   ALERTS
   ============================================================ */

.bo-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--bo-radius-sm);
    font-size: 0.875rem;
    margin-bottom: 16px;
    animation: pageIn 0.25s ease-out;
}

.bo-alert-error   { background: rgba(239,68,68,0.08);  color: #b91c1c; border: 1px solid rgba(239,68,68,0.2); }
.bo-alert-success { background: rgba(16,185,129,0.08); color: #065f46; border: 1px solid rgba(16,185,129,0.2); }
.bo-alert-warning { background: rgba(245,158,11,0.08); color: #92400e; border: 1px solid rgba(245,158,11,0.2); }

/* ============================================================
   TABLES
   ============================================================ */

.bo-table-card {
    background: var(--bo-card);
    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);
    /* NOTE: NO overflow:hidden here — it would block child horizontal scroll */
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.bo-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bo-border);
    background: var(--bo-card);
    gap: 12px;
    flex-wrap: wrap;
    /* Round only top corners to match card */
    border-radius: calc(var(--bo-radius) - 1px) calc(var(--bo-radius) - 1px) 0 0;
}

.bo-table-header-left  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bo-table-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.bo-table-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bo-text);
}

.bo-table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Ensure scrollbar always visible on overflow */
    overflow-y: visible;
}

.bo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
}

.bo-table thead th {
    background: #f8fafc;
    color: var(--bo-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 12px 18px;
    border-bottom: 1px solid var(--bo-border);
    white-space: nowrap;
}

.bo-table tbody td {
    padding: 14px 18px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: var(--bo-text);
}

.bo-table tbody tr:last-child td { border-bottom: none; }
.bo-table tbody tr:hover td { background: #fafbff; }

.bo-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--bo-border);
    background: var(--bo-card);
    font-size: 0.8rem;
    color: var(--bo-text-muted);
    gap: 8px;
    flex-wrap: wrap;
    /* Round only bottom corners to match card */
    border-radius: 0 0 calc(var(--bo-radius) - 1px) calc(var(--bo-radius) - 1px);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bo-text-muted);
    margin-bottom: 6px;
    display: block;
}

.form-control, .form-select {
    background: #f8fafc;
    border: 1.5px solid var(--bo-border);
    border-radius: var(--bo-radius-sm);
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--bo-text);
    width: 100%;
    transition: all 0.2s;
    font-family: var(--font);
}

.form-control:focus, .form-select:focus {
    background: #ffffff;
    border-color: var(--bo-accent);
    box-shadow: 0 0 0 4px var(--bo-accent-soft);
    outline: none;
}

.form-control::placeholder { color: var(--bo-text-light); }

.input-group { display: flex; }
.input-group .form-control { border-radius: 0; flex: 1; }
.input-group .input-group-text {
    background: #f8fafc;
    border: 1.5px solid var(--bo-border);
    border-right: none;
    border-radius: var(--bo-radius-sm) 0 0 var(--bo-radius-sm);
    padding: 10px 14px;
    color: var(--bo-text-muted);
    font-size: 0.9rem;
}
.input-group .btn:last-child {
    border-radius: 0 var(--bo-radius-sm) var(--bo-radius-sm) 0;
}
.input-group .form-control:first-child { border-radius: var(--bo-radius-sm) 0 0 var(--bo-radius-sm); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--bo-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--bo-accent);
    color: white;
    box-shadow: 0 4px 12px var(--bo-accent-glow);
}
.btn-primary:hover  { background: var(--bo-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 20px var(--bo-accent-glow); color: white; }
.btn-primary:active { transform: translateY(0); }

.btn-outline-secondary {
    background: transparent;
    border: 1.5px solid var(--bo-border);
    color: var(--bo-text-muted);
}
.btn-outline-secondary:hover { background: var(--bo-bg); color: var(--bo-text); border-color: #94a3b8; }

.btn-outline-indigo {
    background: transparent;
    border: 1.5px solid var(--bo-accent);
    color: var(--bo-accent);
}
.btn-outline-indigo:hover { background: var(--bo-accent); color: white; }

.btn-danger {
    background: var(--bo-danger);
    color: white;
    box-shadow: 0 4px 12px rgba(239,68,68,0.25);
}
.btn-danger:hover { background: #dc2626; color: white; transform: translateY(-1px); }

.btn-warning {
    background: var(--bo-warning);
    color: white;
    box-shadow: 0 4px 12px rgba(245,158,11,0.25);
}
.btn-warning:hover { background: #d97706; color: white; }

.btn-outline-danger {
    background: transparent;
    border: 1.5px solid var(--bo-danger);
    color: var(--bo-danger);
}
.btn-outline-danger:hover { background: var(--bo-danger); color: white; }

.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-lg { padding: 12px 24px; font-size: 1rem; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.d-grid .btn { width: 100%; justify-content: center; }

/* ============================================================
   BADGES
   ============================================================ */

.bo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.bo-badge-success { background: rgba(16,185,129,0.1);  color: #065f46; border: 1px solid rgba(16,185,129,0.2); }
.bo-badge-info    { background: rgba(59,130,246,0.1);  color: #1d4ed8; border: 1px solid rgba(59,130,246,0.2); }
.bo-badge-warning { background: rgba(245,158,11,0.1);  color: #92400e; border: 1px solid rgba(245,158,11,0.2); }
.bo-badge-danger  { background: rgba(239,68,68,0.1);   color: #991b1b; border: 1px solid rgba(239,68,68,0.2); }
.bo-badge-muted   { background: #f1f5f9; color: var(--bo-text-muted); border: 1px solid var(--bo-border); }
.bo-badge-indigo  { background: var(--bo-accent-soft); color: var(--bo-accent); border: 1px solid rgba(99,102,241,0.2); }
.bo-badge-dark    { background: #1e293b; color: #e2e8f0; border: 1px solid #334155; }

/* ============================================================
   STATUS INDICATOR
   ============================================================ */

.bo-status { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.bo-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bo-status-dot.success { background: var(--bo-success); box-shadow: 0 0 6px var(--bo-success); }
.bo-status-dot.warning { background: var(--bo-warning); box-shadow: 0 0 6px var(--bo-warning); }
.bo-status-dot.danger  { background: var(--bo-danger);  box-shadow: 0 0 6px var(--bo-danger); }
.bo-status-dot.muted   { background: #94a3b8; }

/* ============================================================
   HEALTH CARDS
   ============================================================ */

.bo-health-card {
    background: var(--bo-card);
    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.bo-health-card.healthy   { border-top: 3px solid var(--bo-success); }
.bo-health-card.unhealthy { border-top: 3px solid var(--bo-danger); }
.bo-health-card.warning   { border-top: 3px solid var(--bo-warning); }

/* ============================================================
   QUICK NAV LIST
   ============================================================ */

.bo-quick-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--bo-radius-sm);
    color: var(--bo-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.bo-quick-nav-item:hover {
    background: var(--bo-accent-soft);
    color: var(--bo-accent);
    border-color: rgba(99,102,241,0.15);
    text-decoration: none;
}

.bo-quick-nav-item i { font-size: 1rem; width: 20px; text-align: center; }

/* ============================================================
   UTILITY
   ============================================================ */

.extra-small { font-size: 0.72rem; }
.text-indigo { color: var(--bo-accent) !important; }
.fw-medium { font-weight: 500; }

code.text-indigo {
    background: var(--bo-accent-soft);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

@media (max-width: 767px) {
    /* Sidebar: off-canvas on mobile */
    .bo-sidebar {
        transform: translateX(-100%);
    }

    .bo-sidebar.open {
        transform: translateX(0);
        box-shadow: 8px 0 40px rgba(0,0,0,0.3);
    }

    .bo-sidebar-close { display: block; }

    .bo-overlay.open { display: block; }

    /* Main takes full width on mobile — sidebar is off-canvas */
    .bo-main { margin-left: 0; width: 100%; }

    /* Show hamburger */
    .bo-hamburger { display: flex; }

    /* Hide role badge text on tiny screens */
    .bo-role-badge span { display: none; }

    /* Topbar padding */
    .bo-topbar { padding: 0 16px; }

    /* Content padding */
    .bo-content { padding: 16px; }

    /* KPI grid: 2 cols on mobile */
    .bo-kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* KPI values smaller */
    .bo-kpi-value { font-size: 1.5rem; }

    /* Page header */
    .bo-page-header { flex-direction: column; align-items: flex-start; }
    .bo-page-header .btn { width: 100%; justify-content: center; }

    /* Table header stacks */
    .bo-table-header { flex-direction: column; align-items: stretch; }
    .bo-table-header-left  { flex-direction: column; align-items: stretch; }
    .bo-table-header-right { justify-content: stretch; }
    .bo-table-header-right .btn { flex: 1; justify-content: center; }

    /* Form search/filter inputs */
    .bo-table-header input,
    .bo-table-header select { width: 100% !important; }

    /* Table footer stacks */
    .bo-table-footer { flex-direction: column; align-items: center; text-align: center; }

    /* Topbar title smaller */
    .bo-topbar-title { font-size: 0.875rem; }
    .bo-topbar-sub   { display: none; }
}

@media (min-width: 768px) {
    .bo-kpi-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   BLAZOR LOADING & ERROR
   ============================================================ */

.loading-progress {
    position: relative; display: block; width: 8rem; height: 8rem;
    margin: 20vh auto 1rem;
}
.loading-progress circle {
    fill: none; stroke: #e2e8f0; stroke-width: 0.6rem;
    transform-origin: 50% 50%; transform: rotate(-90deg);
}
.loading-progress circle:last-child {
    stroke: var(--bo-accent);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}
.loading-progress-text::after {
    content: var(--blazor-load-percentage-text, "Loading");
    display: block; text-align: center; font-weight: 600;
    color: var(--bo-text-muted); font-size: 0.8rem;
}

#blazor-error-ui {
    background: #fef2f2; bottom: 0; box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    display: none; left: 0; padding: 0.6rem 1.25rem 0.7rem;
    position: fixed; width: 100%; z-index: 1000;
    border-top: 1px solid #fca5a5; color: #991b1b; font-size: 0.875rem;
}
#blazor-error-ui .dismiss { cursor: pointer; float: right; font-weight: 700; }