/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-fxsc9rfmq3] {
    --sidebar-width: 260px;
    --header-height: 60px;
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --bg-dark: #0f172a;
    --bg-darker: #0a0f1a;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

.app-container[b-fxsc9rfmq3] {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-primary);
}

.sidebar[b-fxsc9rfmq3] {
    width: var(--sidebar-width);
    background: var(--bg-darker);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}

.sidebar-header[b-fxsc9rfmq3] {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.logo[b-fxsc9rfmq3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text[b-fxsc9rfmq3] {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-content[b-fxsc9rfmq3] {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-fxsc9rfmq3] {
    height: var(--header-height);
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left[b-fxsc9rfmq3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-right[b-fxsc9rfmq3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon[b-fxsc9rfmq3] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover[b-fxsc9rfmq3] {
    background: var(--bg-card);
    color: var(--text-primary);
}

.user-menu[b-fxsc9rfmq3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name[b-fxsc9rfmq3] {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.content-area[b-fxsc9rfmq3] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

#blazor-error-ui[b-fxsc9rfmq3] {
    background: var(--error-color);
    color: white;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

#blazor-error-ui[style*="display: block"][b-fxsc9rfmq3] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#blazor-error-ui a[b-fxsc9rfmq3] {
    color: white;
    text-decoration: underline;
}

.btn-primary[b-fxsc9rfmq3] {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover[b-fxsc9rfmq3] {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary[b-fxsc9rfmq3] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover[b-fxsc9rfmq3] {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light[b-fxsc9rfmq3] {
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.btn-outline-light:hover[b-fxsc9rfmq3] {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-color);
}

@@media (max-width: 768px) {
    .sidebar[b-fxsc9rfmq3] {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.open[b-fxsc9rfmq3] {
        transform: translateX(0);
    }

    .main-content[b-fxsc9rfmq3] {
        margin-left: 0;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu[b-ecusmcf9tb] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-section[b-ecusmcf9tb] {
    padding: 0.5rem 1rem;
}

.nav-section-title[b-ecusmcf9tb] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    display: block;
}

.nav-link[b-ecusmcf9tb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.nav-link:hover[b-ecusmcf9tb] {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.nav-link.active[b-ecusmcf9tb] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--primary-color);
}

.nav-link.active svg[b-ecusmcf9tb] {
    color: var(--primary-color);
}

.nav-link svg[b-ecusmcf9tb] {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-link:hover svg[b-ecusmcf9tb] {
    opacity: 1;
}

.nav-section-bottom[b-ecusmcf9tb] {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.nav-user-section[b-ecusmcf9tb] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.nav-user-info[b-ecusmcf9tb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.nav-user-info svg[b-ecusmcf9tb] {
    opacity: 0.7;
}

.nav-link-logout[b-ecusmcf9tb] {
    color: #ef4444 !important;
}

.nav-link-logout:hover[b-ecusmcf9tb] {
    background: rgba(239, 68, 68, 0.1) !important;
}

.nav-menu-guest[b-ecusmcf9tb] {
    padding-top: 2rem;
}

.nav-brand[b-ecusmcf9tb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

:root[b-ecusmcf9tb] {
    --text-muted: #64748b;
    --text-secondary: #94a3b8;
    --text-primary: #f1f5f9;
    --primary-color: #6366f1;
    --border-color: #334155;
}
/* /Components/Pages/Admin/UserEdit.razor.rz.scp.css */
.content-grid[b-cj23f8mdmh] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
}

.user-profile[b-cj23f8mdmh] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.user-avatar-large[b-cj23f8mdmh] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
}

.user-details h2[b-cj23f8mdmh] {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}

.user-details p[b-cj23f8mdmh] {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
}

.user-badges[b-cj23f8mdmh] {
    display: flex;
    gap: 0.5rem;
}

.info-grid[b-cj23f8mdmh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item[b-cj23f8mdmh] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label[b-cj23f8mdmh] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value[b-cj23f8mdmh] {
    font-weight: 500;
}

.action-buttons[b-cj23f8mdmh] {
    display: flex;
    gap: 0.75rem;
}

.empty-state-small[b-cj23f8mdmh] {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.modal-backdrop[b-cj23f8mdmh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal[b-cj23f8mdmh] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header[b-cj23f8mdmh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3[b-cj23f8mdmh] {
    margin: 0;
    font-size: 1.125rem;
}

.modal-close[b-cj23f8mdmh] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
}

.modal-body[b-cj23f8mdmh] {
    padding: 1.25rem;
}

.modal-footer[b-cj23f8mdmh] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.btn-success[b-cj23f8mdmh] {
    background: #22c55e;
    border-color: #22c55e;
}

.btn-success:hover[b-cj23f8mdmh] {
    background: #16a34a;
    border-color: #16a34a;
}

.btn-outline.btn-success[b-cj23f8mdmh] {
    background: transparent;
    border-color: #22c55e;
    color: #22c55e;
}

.btn-outline.btn-danger[b-cj23f8mdmh] {
    background: transparent;
    border-color: #ef4444;
    color: #ef4444;
}

.alert-success[b-cj23f8mdmh] {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 0.875rem 1rem;
    border-radius: 8px;
}

.loading-container[b-cj23f8mdmh] {
    display: flex;
    justify-content: center;
    padding: 4rem;
}

@media (max-width: 768px) {
    .content-grid[b-cj23f8mdmh] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/ImportExport.razor.rz.scp.css */
.import-container[b-0k46o7he8z] {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1.5rem;
    min-height: calc(100vh - 200px);
}

.import-panel .card[b-0k46o7he8z] {
    position: sticky;
    top: 1rem;
}

.import-panel .card-header[b-0k46o7he8z] {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

.import-panel .card-title[b-0k46o7he8z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin: 0;
}

.import-panel .card-body[b-0k46o7he8z] {
    padding: 1.25rem;
}

/* File Upload */
.file-upload-area[b-0k46o7he8z] {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: var(--bg-color);
}

.file-upload-area:hover[b-0k46o7he8z],
.file-upload-area.dragging[b-0k46o7he8z] {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.file-upload-area.has-file[b-0k46o7he8z] {
    border-style: solid;
    border-color: var(--success-color);
    background: rgba(34, 197, 94, 0.05);
}

.file-upload-area .file-input[b-0k46o7he8z] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content[b-0k46o7he8z] {
    pointer-events: none;
}

.upload-icon[b-0k46o7he8z] {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.upload-text[b-0k46o7he8z] {
    font-weight: 500;
    margin: 0.5rem 0 0.25rem;
}

.upload-hint[b-0k46o7he8z] {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.supported-formats[b-0k46o7he8z] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.format-badge[b-0k46o7he8z] {
    padding: 0.25rem 0.75rem;
    background: var(--bg-hover);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.file-selected[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-name[b-0k46o7he8z] {
    font-weight: 600;
    margin: 0.75rem 0 0.25rem;
    word-break: break-all;
}

.file-size[b-0k46o7he8z] {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Configuration */
.config-section[b-0k46o7he8z] {
    margin-top: 1.5rem;
}

.config-row[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.config-item[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.config-label[b-0k46o7he8z] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.options-section[b-0k46o7he8z] {
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.options-grid[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.option-item[b-0k46o7he8z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.option-item:hover[b-0k46o7he8z] {
    background: var(--bg-hover);
}

.option-item input[b-0k46o7he8z] {
    display: none;
}

.option-check[b-0k46o7he8z] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}

.option-item input:checked+.option-check[b-0k46o7he8z] {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.option-item input:checked+.option-check[b-0k46o7he8z]::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-text[b-0k46o7he8z] {
    font-size: 0.875rem;
}

/* Custom Dropdown */
.custom-dropdown[b-0k46o7he8z] {
    position: relative;
    width: 100%;
    outline: none;
}

.custom-dropdown:focus .custom-dropdown-toggle[b-0k46o7he8z] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.custom-dropdown.open[b-0k46o7he8z] {
    z-index: 9998;
}

.custom-dropdown-toggle[b-0k46o7he8z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    color: var(--text-color);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-dropdown-toggle:hover[b-0k46o7he8z] {
    border-color: var(--primary-color);
}

.custom-dropdown-toggle:focus[b-0k46o7he8z] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.custom-dropdown.open .custom-dropdown-toggle[b-0k46o7he8z] {
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-arrow[b-0k46o7he8z] {
    transition: transform 0.2s;
    color: var(--text-muted);
    flex-shrink: 0;
}

.custom-dropdown.open .dropdown-arrow[b-0k46o7he8z] {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Backdrop for dropdowns */
.dropdown-backdrop[b-0k46o7he8z] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    /* Just below the dropdown menu */
    cursor: default;
}

.custom-dropdown-menu[b-0k46o7he8z] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Above the backdrop */
    background: #1e2130;
    border: 1px solid var(--primary-color);
    border-top: none;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 250px;
    overflow-y: auto;
    isolation: isolate;
}

:root.light-theme .custom-dropdown-menu[b-0k46o7he8z] {
    background: #ffffff;
}

.custom-dropdown-item[b-0k46o7he8z] {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    text-align: left;
    color: #e4e6eb;
    background: #1e2130;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s;
    pointer-events: auto;
    position: relative;
}

.custom-dropdown-item:hover[b-0k46o7he8z] {
    background: #2a2d3e;
}

.custom-dropdown-item.active[b-0k46o7he8z] {
    background: var(--primary-color);
    color: white;
}

:root.light-theme .custom-dropdown-item[b-0k46o7he8z] {
    color: #1f2937;
    background: #ffffff;
}

:root.light-theme .custom-dropdown-item:hover[b-0k46o7he8z] {
    background: #f3f4f6;
}

.custom-dropdown-empty[b-0k46o7he8z] {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.dropdown-overlay[b-0k46o7he8z] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.auto-detected-badge[b-0k46o7he8z] {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    margin-left: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 999px;
}

.btn-full[b-0k46o7he8z] {
    width: 100%;
    margin-top: 1.5rem;
}

.btn-lg[b-0k46o7he8z] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Preview Panel */
.preview-panel[b-0k46o7he8z] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.preview-empty[b-0k46o7he8z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    padding: 3rem;
    text-align: center;
}

.preview-empty svg[b-0k46o7he8z] {
    opacity: 0.3;
    margin-bottom: 1rem;
}

.preview-empty h3[b-0k46o7he8z] {
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.preview-empty p[b-0k46o7he8z] {
    margin: 0;
}

.preview-content[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-header[b-0k46o7he8z] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-title h3[b-0k46o7he8z] {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
}

.preview-title p[b-0k46o7he8z] {
    margin: 0;
    font-size: 0.875rem;
}

.preview-stats[b-0k46o7he8z] {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-color);
}

.stat-card[b-0k46o7he8z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: var(--card-bg);
    border-radius: var(--radius);
}

.stat-number[b-0k46o7he8z] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text[b-0k46o7he8z] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.endpoints-list[b-0k46o7he8z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.endpoints-header[b-0k46o7he8z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.endpoints-header h4[b-0k46o7he8z] {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.endpoints-scroll[b-0k46o7he8z] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.endpoint-item[b-0k46o7he8z] {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.endpoint-header[b-0k46o7he8z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.endpoint-header:hover[b-0k46o7he8z] {
    background: var(--bg-hover);
}

.endpoint-route[b-0k46o7he8z] {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    flex: 1;
}

.endpoint-name[b-0k46o7he8z] {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chevron[b-0k46o7he8z] {
    transition: transform 0.2s;
    color: var(--text-muted);
}

.endpoint-item.expanded .chevron[b-0k46o7he8z] {
    transform: rotate(180deg);
}

.endpoint-details[b-0k46o7he8z] {
    padding: 1rem;
    background: var(--bg-hover);
    border-top: 1px solid var(--border-color);
}

.endpoint-description[b-0k46o7he8z] {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail-section[b-0k46o7he8z] {
    margin-bottom: 1rem;
}

.detail-section:last-child[b-0k46o7he8z] {
    margin-bottom: 0;
}

.detail-section h5[b-0k46o7he8z] {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.headers-grid[b-0k46o7he8z],
.responses-grid[b-0k46o7he8z] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-row[b-0k46o7he8z] {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    background: var(--card-bg);
    border-radius: 4px;
}

.header-row code[b-0k46o7he8z] {
    color: var(--primary-color);
    font-size: 0.8125rem;
}

.response-row[b-0k46o7he8z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    background: var(--card-bg);
    border-radius: 4px;
}

.status-code[b-0k46o7he8z] {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-2xx[b-0k46o7he8z] {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-3xx[b-0k46o7he8z] {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.status-4xx[b-0k46o7he8z] {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.status-5xx[b-0k46o7he8z] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.method-badge[b-0k46o7he8z] {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 50px;
    text-align: center;
}

.method-get[b-0k46o7he8z] {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.method-post[b-0k46o7he8z] {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.method-put[b-0k46o7he8z] {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.method-patch[b-0k46o7he8z] {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.method-delete[b-0k46o7he8z] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.method-head[b-0k46o7he8z] {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.method-options[b-0k46o7he8z] {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.spinner[b-0k46o7he8z] {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin-b-0k46o7he8z 0.6s linear infinite;
}

@keyframes spin-b-0k46o7he8z {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .import-container[b-0k46o7he8z] {
        grid-template-columns: 1fr;
    }

    .import-panel .card[b-0k46o7he8z] {
        position: static;
    }
}
/* /Components/Pages/Logs.razor.rz.scp.css */
.log-row[b-2dsok5oo2o] {
    cursor: pointer;
    transition: background 0.15s;
}

.log-row:hover[b-2dsok5oo2o] {
    background: var(--hover-bg);
}

.error-row[b-2dsok5oo2o] {
    background: rgba(239, 68, 68, 0.1) !important;
}

.error-row:hover[b-2dsok5oo2o] {
    background: rgba(239, 68, 68, 0.15) !important;
}

.modal-lg[b-2dsok5oo2o] {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-body[b-2dsok5oo2o] {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.log-detail-summary[b-2dsok5oo2o] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    background: var(--hover-bg);
    border-bottom: 1px solid var(--border-color);
}

.summary-item[b-2dsok5oo2o] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label[b-2dsok5oo2o] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.summary-value[b-2dsok5oo2o] {
    font-size: 0.875rem;
    font-weight: 500;
}

.log-detail-tabs[b-2dsok5oo2o] {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.25rem;
}

.tab-btn[b-2dsok5oo2o] {
    padding: 0.875rem 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.15s;
}

.tab-btn:hover[b-2dsok5oo2o] {
    color: var(--text-color);
}

.tab-btn.active[b-2dsok5oo2o] {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.log-detail-content[b-2dsok5oo2o] {
    padding: 1.25rem;
}

.detail-section[b-2dsok5oo2o] {
    margin-bottom: 1.5rem;
}

.detail-section:last-child[b-2dsok5oo2o] {
    margin-bottom: 0;
}

.detail-section h4[b-2dsok5oo2o] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-code[b-2dsok5oo2o] {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--hover-bg);
    border-radius: 6px;
    font-size: 0.8125rem;
    word-break: break-all;
}

.detail-pre[b-2dsok5oo2o] {
    margin: 0;
    padding: 1rem;
    background: var(--hover-bg);
    border-radius: 6px;
    font-size: 0.8125rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 300px;
    overflow-y: auto;
}

.error-text[b-2dsok5oo2o] {
    color: #f87171;
}

.text-truncate[b-2dsok5oo2o] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/Pages/ProjectEdit.razor.rz.scp.css */
@keyframes pulse-b-36a7weuqy4 {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading-container[b-36a7weuqy4] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.project-grid[b-36a7weuqy4] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
}

.checkbox-label[b-36a7weuqy4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-actions[b-36a7weuqy4] {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.spinner-sm[b-36a7weuqy4] {
    width: 16px;
    height: 16px;
}

.sidebar-section-title[b-36a7weuqy4] {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.active-indicator[b-36a7weuqy4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.active-dot[b-36a7weuqy4] {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse-b-36a7weuqy4 2s infinite;
}

.mock-url-code[b-36a7weuqy4] {
    display: block;
    padding: 0.5rem;
    background: var(--bg-darker);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    word-break: break-all;
}

.info-grid[b-36a7weuqy4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.variable-list[b-36a7weuqy4] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.variable-hint[b-36a7weuqy4] {
    display: block;
    padding: 0.25rem 0.5rem;
    background: var(--bg-darker);
    border-radius: 0.25rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.full-width-btn[b-36a7weuqy4] {
    width: 100%;
    margin-top: 0.75rem;
}

.empty-state-padding[b-36a7weuqy4] {
    padding: 2rem;
}
/* /Components/Pages/Projects.razor.rz.scp.css */
.project-card[b-p1tlkaz5ke] {
    cursor: pointer;
    transition: all 0.2s;
}

.project-card:hover[b-p1tlkaz5ke] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-icon[b-p1tlkaz5ke] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal-project[b-p1tlkaz5ke] {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
}

.team-project[b-p1tlkaz5ke] {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mock-url-small[b-p1tlkaz5ke] {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--hover-bg);
    padding: 2px 6px;
    border-radius: 4px;
}

.project-footer[b-p1tlkaz5ke] {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.endpoint-count[b-p1tlkaz5ke] {
    background: var(--hover-bg);
    padding: 2px 8px;
    border-radius: 4px;
}

.team-badge[b-p1tlkaz5ke],
.personal-badge[b-p1tlkaz5ke] {
    display: flex;
    align-items: center;
    gap: 4px;
}
/* /Components/Pages/TeamDetail.razor.rz.scp.css */
.project-list[b-4hnka9i49r] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-card[b-4hnka9i49r] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.project-card:hover[b-4hnka9i49r] {
    border-color: var(--primary);
    transform: translateX(4px);
}

.member-list[b-4hnka9i49r] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-item[b-4hnka9i49r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.member-item:hover[b-4hnka9i49r] {
    background: var(--hover-bg);
}

.member-avatar[b-4hnka9i49r] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.member-info[b-4hnka9i49r] {
    flex: 1;
}

.member-name[b-4hnka9i49r] {
    font-weight: 500;
}

.member-email[b-4hnka9i49r] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge-sm[b-4hnka9i49r] {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

.mock-url[b-4hnka9i49r] {
    background: var(--card-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* User Search Styles */
.user-search-container[b-4hnka9i49r] {
    position: relative;
}

.user-search-input-wrapper[b-4hnka9i49r] {
    position: relative;
}

.user-search-input-wrapper .search-icon[b-4hnka9i49r] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.user-search-input[b-4hnka9i49r] {
    padding-left: 38px !important;
}

.user-search-dropdown[b-4hnka9i49r] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-secondary, #1e1e2e);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.user-dropdown-item[b-4hnka9i49r] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown-item:last-child[b-4hnka9i49r] {
    border-bottom: none;
}

.user-dropdown-item:hover[b-4hnka9i49r] {
    background: rgba(99, 102, 241, 0.15);
}

.user-dropdown-avatar[b-4hnka9i49r] {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-dropdown-info[b-4hnka9i49r] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.user-dropdown-name[b-4hnka9i49r] {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-email[b-4hnka9i49r] {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-empty[b-4hnka9i49r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Selected User Card */
.selected-user-card[b-4hnka9i49r] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
}

.selected-user-avatar[b-4hnka9i49r] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.selected-user-info[b-4hnka9i49r] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.selected-user-name[b-4hnka9i49r] {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.selected-user-email[b-4hnka9i49r] {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-clear-user[b-4hnka9i49r] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.btn-clear-user:hover[b-4hnka9i49r] {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Slug display */
.slug-display[b-4hnka9i49r] {
    display: block;
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary, #1e1e2e);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
}

/* Readonly team info */
.team-info-readonly[b-4hnka9i49r] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row[b-4hnka9i49r] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label[b-4hnka9i49r] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value[b-4hnka9i49r] {
    font-size: 0.9375rem;
    color: var(--text-color);
}

.d-block[b-4hnka9i49r] {
    display: block;
}

.loading-container[b-4hnka9i49r] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.team-grid[b-4hnka9i49r] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
}

.section-title[b-4hnka9i49r] {
    margin: 0;
}

.project-title[b-4hnka9i49r] {
    margin: 0 0 0.25rem 0;
}

.empty-state-padded[b-4hnka9i49r] {
    padding: 2rem;
}

.project-description[b-4hnka9i49r] {
    margin-bottom: 0;
}
/* /Components/Pages/Variables.razor.rz.scp.css */
.variables-container[b-3qr66hzto4] {
    max-width: 1200px;
}

.search-box[b-3qr66hzto4] {
    margin-bottom: 1.5rem;
}

.search-box input[b-3qr66hzto4] {
    max-width: 400px;
}

.categories-grid[b-3qr66hzto4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.category-card[b-3qr66hzto4] {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.category-header[b-3qr66hzto4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.category-icon[b-3qr66hzto4] {
    font-size: 1.5rem;
}

.category-title[b-3qr66hzto4] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.category-description[b-3qr66hzto4] {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 1rem 0;
}

.variables-list[b-3qr66hzto4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variable-item[b-3qr66hzto4] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.variable-item:hover[b-3qr66hzto4] {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.variable-info[b-3qr66hzto4] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.variable-syntax[b-3qr66hzto4] {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.variable-description[b-3qr66hzto4] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.variable-example[b-3qr66hzto4] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.example-label[b-3qr66hzto4] {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.example-value[b-3qr66hzto4] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Fira Code', monospace;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn[b-3qr66hzto4] {
    padding: 0.375rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.15s ease;
}

.copy-btn:hover[b-3qr66hzto4] {
    background: var(--primary-color);
    color: white;
}

.example-section[b-3qr66hzto4] {
    margin-bottom: 1.5rem;
}

.example-section:last-child[b-3qr66hzto4] {
    margin-bottom: 0;
}

.example-section h4[b-3qr66hzto4] {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
}

.code-block[b-3qr66hzto4] {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 0;
    overflow-x: auto;
}

.code-block code[b-3qr66hzto4] {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
    white-space: pre;
}

.toast[b-3qr66hzto4] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--success-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideIn-b-3qr66hzto4 0.3s ease;
    z-index: 1000;
}

@keyframes slideIn-b-3qr66hzto4 {
    from {
        transform: translateY(1rem);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Components/Shared/EndpointList.razor.rz.scp.css */
.endpoint-list[b-opvxl2dvbe] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.endpoint-item[b-opvxl2dvbe] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.endpoint-item:hover[b-opvxl2dvbe] {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.status-badge[b-opvxl2dvbe] {
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}
/* /Components/Shared/EndpointModal.razor.rz.scp.css */
.modal-large[b-yyw8j26j36] {
    width: 800px;
    max-width: 95vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-large .modal-body[b-yyw8j26j36] {
    overflow-y: auto;
    flex: 1;
}

.tab-badge[b-yyw8j26j36] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border-radius: 9px;
}

.endpoint-logs-section[b-yyw8j26j36] {
    padding: 0.5rem 0;
}

.endpoint-logs-list[b-yyw8j26j36] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 350px;
    overflow-y: auto;
}

.endpoint-log-item[b-yyw8j26j36] {
    padding: 0.75rem;
    background: var(--hover-bg);
    border-radius: 6px;
    border-left: 3px solid var(--success-color);
}

.endpoint-log-item.error[b-yyw8j26j36] {
    border-left-color: var(--danger-color);
    background: rgba(239, 68, 68, 0.05);
}

.log-item-header[b-yyw8j26j36] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.log-time[b-yyw8j26j36] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.log-duration[b-yyw8j26j36] {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: auto;
}

.log-item-path[b-yyw8j26j36] {
    font-size: 0.8125rem;
}

.log-item-path code[b-yyw8j26j36] {
    background: transparent;
    padding: 0;
}

.log-item-meta[b-yyw8j26j36] {
    margin-top: 0.25rem;
}

.modal-tabs[b-yyw8j26j36] {
    display: flex;
    gap: 0.25rem;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.modal-tab[b-yyw8j26j36] {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.modal-tab:hover[b-yyw8j26j36] {
    background: var(--bg-darker);
    color: var(--text-primary);
}

.modal-tab.active[b-yyw8j26j36] {
    background: var(--primary-color);
    color: white;
}

.code-editor[b-yyw8j26j36] {
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    resize: vertical;
}

.header-row[b-yyw8j26j36] {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.rule-card[b-yyw8j26j36] {
    padding: 0.75rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.empty-state-sm[b-yyw8j26j36] {
    padding: 1.5rem;
    text-align: center;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    border: 1px dashed var(--border-color);
}

.info-box[b-yyw8j26j36] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.info-box ul[b-yyw8j26j36] {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.info-box li[b-yyw8j26j36] {
    color: var(--text-muted);
}

.btn-xs[b-yyw8j26j36] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.text-xs[b-yyw8j26j36] {
    font-size: 0.7rem;
}

.form-control-sm[b-yyw8j26j36] {
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
}
