/* Security Audit v6.0 */
:root { --sa-sidebar-width: 240px; }
body { background: #f8f9fa; }

.sa-sidebar {
    width: var(--sa-sidebar-width); min-height: 100vh;
    position: fixed; top: 0; left: 0;
    background: #1a1f2e; color: #adb5bd;
    z-index: 100; overflow-y: auto;
}
.sa-sidebar .nav-link {
    color: #adb5bd; padding: .5rem 1.25rem;
    border-radius: .375rem; margin: 2px 8px;
}
.sa-sidebar .nav-link:hover,
.sa-sidebar .nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.sa-logo {
    padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .85rem; font-weight: 600; color: #fff; letter-spacing: .05em;
}
.sa-main { margin-left: var(--sa-sidebar-width); min-height: 100vh; padding: 2rem; }

.badge-critical { background: #dc3545; color: #fff; }
.badge-high     { background: #fd7e14; color: #fff; }
.badge-medium   { background: #ffc107; color: #000; }
.badge-low      { background: #6c757d; color: #fff; }
.badge-ok       { background: #198754; color: #fff; }

.skill-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; height: calc(100vh - 220px);
}
.skill-split textarea { height: 100%; font-family: monospace; font-size: .875rem; resize: none; }
.skill-preview {
    height: 100%; overflow-y: auto;
    border: 1px solid #dee2e6; border-radius: .375rem; padding: 1rem; background: #fff;
}
@media (max-width: 768px) {
    .sa-sidebar { position: relative; width: 100%; min-height: auto; }
    .sa-main    { margin-left: 0; padding: 1rem; }
    .skill-split { grid-template-columns: 1fr; }
}
