:root{--color-bg: #0f0f0f;--color-bg-secondary: #1a1a1a;--color-bg-tertiary: #252525;--color-border: #333;--color-text: #e5e5e5;--color-text-muted: #888;--color-primary: #3b82f6;--color-primary-hover: #2563eb;--color-success: #22c55e;--color-warning: #f59e0b;--color-error: #ef4444;--radius: 6px;--shadow: 0 2px 8px rgba(0, 0, 0, .3)}*{box-sizing:border-box;margin:0;padding:0}html,body{height:100%}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;background:var(--color-bg);color:var(--color-text);line-height:1.5}a{color:var(--color-primary);text-decoration:none}a:hover{text-decoration:underline}.app-layout{display:flex;min-height:100vh}.sidebar{width:150px;background:var(--color-bg-secondary);border-right:1px solid var(--color-border);padding:1rem 0;position:fixed;height:100vh;overflow-y:auto}.sidebar-logo{padding:0 1rem 1rem;border-bottom:1px solid var(--color-border);margin-bottom:1rem}.sidebar-logo h1{font-size:1.1rem;font-weight:600}.sidebar-nav{list-style:none}.sidebar-nav a{display:flex;align-items:center;gap:.75rem;padding:.75rem 1rem;color:var(--color-text-muted);transition:all .15s}.sidebar-nav a:hover,.sidebar-nav a.active{background:var(--color-bg-tertiary);color:var(--color-text);text-decoration:none}.main-content{flex:1;margin-left:180px;padding:2rem;min-height:100vh}.card{background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius);padding:1.25rem}.card+.card{margin-top:2rem}.card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.card-title{font-size:1rem;font-weight:600}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-bottom:2rem}.stat-card{background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius);padding:1.25rem}.stat-label{font-size:.85rem;color:var(--color-text-muted);margin-bottom:.25rem}.stat-value{font-size:1.75rem;font-weight:600}.table-container{overflow-x:auto}table{width:100%;border-collapse:collapse}th,td{text-align:left;padding:.75rem 1rem;border-bottom:1px solid var(--color-border)}th{font-weight:600;font-size:.85rem;color:var(--color-text-muted);background:var(--color-bg-tertiary)}td{word-break:break-word}tr:hover td{background:var(--color-bg-tertiary)}.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border:none;border-radius:var(--radius);font-size:.9rem;font-weight:500;cursor:pointer;transition:all .15s}.btn-primary{background:var(--color-primary);color:#fff}.btn-primary:hover{background:var(--color-primary-hover)}.btn-secondary{background:var(--color-bg-tertiary);color:var(--color-text);border:1px solid var(--color-border)}.btn-secondary:hover{background:var(--color-border)}.btn-danger{background:var(--color-error);color:#fff}.btn-danger:hover{background:#dc2626}.btn-sm{padding:.35rem .75rem;font-size:.8rem}.form-group{margin-bottom:1rem}.form-label{display:block;font-size:.85rem;font-weight:500;margin-bottom:.35rem;color:var(--color-text-muted)}.form-input,.form-select{width:100%;padding:.6rem .75rem;background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius);color:var(--color-text);font-size:.9rem}.form-input:focus,.form-select:focus{outline:none;border-color:var(--color-primary)}.form-input::placeholder{color:var(--color-text-muted)}.badge{display:inline-flex;align-items:center;padding:.2rem .5rem;border-radius:4px;font-size:.75rem;font-weight:500}.badge-success{background:#22c55e26;color:var(--color-success)}.badge-warning{background:#f59e0b26;color:var(--color-warning)}.badge-error{background:#ef444426;color:var(--color-error)}.badge-muted{background:var(--color-bg-tertiary);color:var(--color-text-muted)}.method{font-weight:600;font-size:.75rem;padding:.2rem .4rem;border-radius:3px}.method-get{background:#22c55e26;color:var(--color-success)}.method-post{background:#3b82f626;color:var(--color-primary)}.method-put{background:#f59e0b26;color:var(--color-warning)}.method-patch{background:#a855f726;color:#a855f7}.method-delete{background:#ef444426;color:var(--color-error)}.code-block{background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius);padding:1rem;overflow-x:auto;font-family:Monaco,Menlo,Consolas,monospace;font-size:.85rem;line-height:1.6}pre{margin:0;white-space:pre-wrap;word-break:break-word}.page-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.page-title{font-size:1.5rem;font-weight:600}.filters{display:flex;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap}.filters .form-input,.filters .form-select{width:auto;min-width:150px}.pagination{display:flex;justify-content:center;align-items:center;gap:.5rem;margin-top:1.5rem}.pagination-info{color:var(--color-text-muted);font-size:.85rem;margin:0 1rem}.empty-state{text-align:center;padding:3rem;color:var(--color-text-muted)}.empty-state-icon{font-size:3rem;margin-bottom:1rem}.checkbox-wrapper{display:flex;align-items:center}input[type=checkbox]{width:1rem;height:1rem;accent-color:var(--color-primary);cursor:pointer}.modal-backdrop{position:fixed;inset:0;background:#000000b3;display:flex;align-items:center;justify-content:center;z-index:100}.modal{background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius);padding:1.5rem;width:90%;max-width:500px;max-height:90vh;overflow-y:auto}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.modal-title{font-size:1.1rem;font-weight:600}.modal-close{background:none;border:none;color:var(--color-text-muted);font-size:1.5rem;cursor:pointer;padding:0;line-height:1}.modal-close:hover{color:var(--color-text)}.modal-footer{display:flex;justify-content:flex-end;gap:.75rem;margin-top:1.5rem}.detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}@media(max-width:900px){.detail-grid{grid-template-columns:1fr}}.detail-section{margin-bottom:1.5rem}.detail-section-title{font-size:.9rem;font-weight:600;color:var(--color-text-muted);margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.05em}.detail-row{display:flex;padding:.5rem 0;border-bottom:1px solid var(--color-border)}.detail-label{width:140px;flex-shrink:0;color:var(--color-text-muted);font-size:.85rem}.detail-value{flex:1;word-break:break-all}.text-muted{color:var(--color-text-muted)}.text-success{color:var(--color-success)}.text-error{color:var(--color-error)}.text-sm{font-size:.85rem}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:300px}.mt-1{margin-top:.5rem}.mb-1{margin-bottom:.5rem}.flex{display:flex}.gap-1{gap:.5rem}.items-center{align-items:center}.sidebar-user.svelte-12qhfyh{margin-top:auto;padding:1rem;border-top:1px solid var(--border-color, #333)}.user-info.svelte-12qhfyh{margin-bottom:.75rem}.user-email.svelte-12qhfyh{font-size:.85rem;color:var(--text-secondary, #888);word-break:break-all}.user-roles.svelte-12qhfyh{display:flex;flex-wrap:wrap;gap:.25rem;margin-top:.5rem}.role-badge.svelte-12qhfyh{font-size:.7rem;padding:.15rem .4rem;background:var(--accent-color, #3b82f6);color:#fff;border-radius:4px;text-transform:lowercase}.logout-button.svelte-12qhfyh{width:100%;padding:.5rem 1rem;font-size:.85rem;color:var(--text-secondary, #888);background:transparent;border:1px solid var(--border-color, #333);border-radius:6px;cursor:pointer;transition:all .2s}.logout-button.svelte-12qhfyh:hover{color:var(--text-primary, #fff);border-color:var(--text-secondary, #888)}
