:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(17, 24, 39, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.35);
    --secondary: #a855f7;
    --success: #10b981;
    --danger: #ef4444;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.12) 0%, transparent 40%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    background: rgba(11, 15, 25, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

h1 {
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.badge {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #c7d2fe;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

main {
    flex: 1;
    padding: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    main {
        grid-template-columns: 1fr;
    }
}

/* Glass Container Styling */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.15rem;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Left Sidebar: Controls */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: fit-content;
}

/* Section Titles */
.section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.section-title svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
}

/* File Upload */
.drop-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.drop-zone:hover, .drop-zone.dragover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.drop-zone svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.drop-zone:hover svg {
    color: var(--primary);
    transform: translateY(-3px);
}

.drop-zone p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.drop-zone span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.file-input {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.file-info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.remove-file {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 0.25rem;
}

.remove-file:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

/* Form Inputs */
.input-group {
    margin-bottom: 0.75rem;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 0.75rem;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.text-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem 0.5rem 2.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.text-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Right Content Panel */
.content-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Welcome Card (when empty) */
.welcome-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 450px;
}

.welcome-icon {
    width: 4rem;
    height: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.welcome-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.welcome-card p {
    color: var(--text-muted);
    max-width: 480px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Tab Navigation */
.tab-bar {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Editor Section Styles */
.editor-container {
    display: none; /* Shown dynamically */
    animation: fadeIn 0.3s ease;
}

.editor-container.active {
    display: block;
}

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

/* Form Visual Editor Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* Cards inside Visual Editor */
.config-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 0.95rem;
    margin-bottom: 1rem;
}

.config-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.config-card-title svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

/* Switches & Toggles */
.toggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.toggle-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.toggle-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toggle-title {
    font-size: 0.85rem;
    font-weight: 500;
}

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

/* Custom Toggle Switch CSS */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .2s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #9ca3af;
    transition: .2s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--success);
}

input:checked + .slider:before {
    background-color: #fff;
    transform: translateX(20px);
}

/* JSON Text Editor */
.json-editor-wrapper {
    position: relative;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: #060911;
}

.json-textarea {
    width: 100%;
    height: 480px;
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1rem;
    resize: vertical;
    outline: none;
    tab-size: 4;
}

/* JSON Validation Banner */
.validation-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
}

.validation-banner.valid {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

.validation-banner.invalid {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Global Status Banner / Toast Alert */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.toast {
    min-width: 300px;
    max-width: 450px;
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1px solid;
}

.toast.success {
    background: rgba(6, 78, 59, 0.85);
    border-color: rgba(16, 185, 129, 0.3);
    color: #ecfdf5;
}

.toast.error {
    background: rgba(153, 27, 27, 0.85);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fef2f2;
}

.toast.info {
    background: rgba(30, 58, 138, 0.85);
    border-color: rgba(59, 130, 246, 0.3);
    color: #eff6ff;
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    padding: 0.1rem;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%) translateY(20px); opacity: 0; }
    to { transform: translateX(0) translateY(0); opacity: 1; }
}

/* Action footer inside Editor card */
.editor-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
}

.editor-footer .btn {
    width: auto;
    min-width: 160px;
}

/* Loading Spinner */
.spinner {
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading .spinner {
    display: inline-block;
}
.btn.loading span {
    display: none;
}

/* Modal Dialog Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.75rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}
.modal-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}
.radio-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.radio-option:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
.radio-option.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}
.radio-option input[type="radio"] {
    margin-top: 0.2rem;
    accent-color: var(--primary);
    cursor: pointer;
}
.radio-label-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    cursor: pointer;
    flex: 1;
}
.radio-main-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}
.radio-sub-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Brute Force additions */
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 1rem 0;
}
.or-divider::before, .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.or-divider:not(:empty)::before {
    margin-right: .5em;
}
.or-divider:not(:empty)::after {
    margin-left: .5em;
}

.brute-progress-panel {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}
.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.progress-bar-fill {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    height: 100%;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px var(--primary-glow);
}
.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.progress-speed {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Security Lockscreen & Bypass Configuration */
.lockscreen-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lockscreen-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.lock-badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.lock-badge svg {
    width: 1.75rem;
    height: 1.75rem;
}

.lock-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lock-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Secret update drawer config */
.bypass-card {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
}

.bypass-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────
   Biometric Matching & Processing Simulator Styles
   ───────────────────────────────────────────────────────────── */
.bio-canvas-card canvas {
    background-color: #000;
    transition: box-shadow 0.3s ease;
}

.bio-canvas-card:hover canvas {
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.scan-bar {
    animation: scanAnimation 2.5s ease-in-out infinite;
}

@keyframes scanAnimation {
    0%, 100% {
        top: 0%;
        opacity: 0.8;
    }
    50% {
        top: 100%;
        opacity: 0.3;
    }
}

/* Styled Markdown Typography for Biometric Report Reader */
.bio-report-content {
    line-height: 1.65;
    color: #d1d5db;
}

.bio-report-content h1, 
.bio-report-content h2, 
.bio-report-content h3 {
    color: #fff;
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.bio-report-content h1 {
    font-size: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-report-content h2 {
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.35rem;
    color: #e9d5ff;
}

.bio-report-content h3 {
    font-size: 0.95rem;
    color: #a5b4fc;
}

.bio-report-content p {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.bio-report-content code {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #f472b6;
}

.bio-report-content pre {
    background: #04070d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
}

.bio-report-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #c7d2fe;
    font-size: 0.78rem;
}

.bio-report-content ul, 
.bio-report-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    font-size: 0.85rem;
}

.bio-report-content li {
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.7);
}

.bio-report-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.01);
    border-radius: 0.5rem;
    overflow: hidden;
}

.bio-report-content th, 
.bio-report-content td {
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.bio-report-content th {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-weight: 600;
}

.bio-report-content tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.bio-report-content blockquote {
    border-left: 3px solid var(--primary);
    background: rgba(99, 102, 241, 0.05);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0.35rem;
}

.bio-report-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: #c7d2fe;
}

/* Alert styles matching markdown parser spec */
.bio-report-content .alert-note {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    margin: 1.25rem 0;
}

.bio-report-content .alert-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a5b4fc;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.bio-report-content .svg-flowchart {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 0.75rem;
    padding: 1rem;
}

