Brand chat as Sovereign and implement admin panel, quotas, schedules, network management, and cryptographic compliance audits

This commit is contained in:
2026-06-22 16:30:42 -04:00
parent 2d1a9547d4
commit 411471cdd3
5 changed files with 1184 additions and 69 deletions
+231 -1
View File
@@ -749,4 +749,234 @@ button {
.language-python .string { color: #98c379; }
.language-python .number { color: #d19a66; }
.language-python .comment { color: #5c6370; }
.language-python .function { color: #61afef; }
.language-python .function { color: #61afef; }
/* ==================== Admin Panel Styles ==================== */
.btn-admin-toggle {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
padding: 10px 12px;
background: transparent;
color: var(--text-muted);
border: 1px solid var(--border);
border-radius: 6px;
font-weight: 500;
cursor: pointer;
transition: all var(--transition);
}
.btn-admin-toggle:hover {
background: var(--bg-hover);
color: var(--text);
border-color: var(--primary);
}
.admin-layout {
display: flex;
width: 100vw;
height: 100vh;
background: var(--bg-primary);
color: var(--text);
overflow: hidden;
}
.admin-sidebar {
width: 280px;
background: var(--bg-secondary);
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
padding: 20px;
}
.admin-sidebar-header {
margin-bottom: 30px;
}
.admin-sidebar-header h2 {
font-size: 1.5rem;
color: var(--primary);
font-weight: 700;
margin-bottom: 4px;
}
.admin-sidebar-header p {
font-size: 0.8rem;
color: var(--text-muted);
}
.admin-sidebar-menu {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
.admin-menu-item {
width: 100%;
text-align: left;
padding: 12px 16px;
background: transparent;
border: none;
border-radius: 6px;
color: var(--text-muted);
font-weight: 500;
cursor: pointer;
transition: all var(--transition);
}
.admin-menu-item:hover, .admin-menu-item.active {
background: var(--bg-hover);
color: var(--primary);
}
.admin-menu-item.active {
font-weight: 600;
background: var(--bg-tertiary);
}
.btn-admin-close {
width: 100%;
padding: 12px;
background: var(--bg-tertiary);
color: var(--text);
border: 1px solid var(--border);
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all var(--transition);
}
.btn-admin-close:hover {
background: var(--primary);
color: white;
}
.admin-content {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: auto;
padding: 40px;
}
.admin-header {
margin-bottom: 30px;
border-bottom: 1px solid var(--border);
padding-bottom: 15px;
}
.admin-header h1 {
font-size: 1.8rem;
font-weight: 600;
}
.admin-body {
display: flex;
flex-direction: column;
gap: 24px;
}
.admin-card {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 8px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 12px;
}
.admin-card h3 {
font-size: 1.2rem;
font-weight: 600;
color: var(--text);
}
.card-desc {
font-size: 0.9rem;
color: var(--text-muted);
margin-bottom: 8px;
}
.admin-table {
width: 100%;
border-collapse: collapse;
text-align: left;
margin-top: 10px;
}
.admin-table th, .admin-table td {
padding: 12px;
border-bottom: 1px solid var(--border);
}
.admin-table th {
font-weight: 600;
color: var(--text-muted);
font-size: 0.9rem;
}
.admin-table td {
font-size: 0.95rem;
}
.badge {
display: inline-block;
padding: 4px 8px;
font-size: 0.75rem;
font-weight: 600;
border-radius: 4px;
}
.badge-success {
background: rgba(16, 185, 129, 0.15);
color: #10b981;
}
.badge-warn {
background: rgba(245, 158, 11, 0.15);
color: #f59e0b;
}
.font-mono {
font-family: monospace;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.gap-2 {
gap: 8px;
}
.gap-4 {
gap: 16px;
}
.align-self-start {
align-self: flex-start;
}
.hidden {
display: none !important;
}
.btn-link {
color: var(--primary);
text-decoration: underline;
cursor: pointer;
font-size: 0.9rem;
}
.btn-link:hover {
color: var(--primary-hover);
}