/*
Theme Name: OLAMBA
Theme URI: https://olamba.com
Author: OLAMBA Team
Author URI: https://olamba.com
Description: OLAMBA Voice Agent Mission Control - A complete dark-themed AI agent dashboard for WordPress. Features sidebar navigation with 16 sections, activity feed, system status, device management, smart home controls, AI chat, and more. Zero setup required - activates fully configured.
Version: 2.0.0
License: Proprietary
Text Domain: olamba
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --ol-bg: #080b14;
    --ol-sidebar: #0c1021;
    --ol-card: #0f1525;
    --ol-card-hover: #141a30;
    --ol-input: #0c1021;
    --ol-border: rgba(255,255,255,0.06);
    --ol-border-solid: #1a1f35;
    --ol-white: #f9fafb;
    --ol-light: #e5e7eb;
    --ol-mid: #d1d5db;
    --ol-muted: #9ca3af;
    --ol-dim: #6b7280;
    --ol-faint: #4b5563;
    --ol-blue: #3b82f6;
    --ol-blue-l: #60a5fa;
    --ol-indigo: #6366f1;
    --ol-indigo-l: #818cf8;
    --ol-green: #22c55e;
    --ol-orange: #f59e0b;
    --ol-red: #ef4444;
    --ol-radius: 12px;
    --ol-sidebar-w: 230px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html, body {
    background: var(--ol-bg) !important;
    color: var(--ol-mid);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--ol-blue-l); text-decoration: none; }
a:hover { color: var(--ol-blue); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; }

/* ============================================================
   LAYOUT
   ============================================================ */
.ol-wrap { display: flex; min-height: 100vh; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.ol-sidebar {
    width: var(--ol-sidebar-w); min-width: var(--ol-sidebar-w);
    background: var(--ol-sidebar);
    border-right: 1px solid var(--ol-border);
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 9999; overflow: hidden;
    transition: transform 0.3s ease;
}
.ol-sidebar-inner {
    height: 100%; display: flex; flex-direction: column;
    overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--ol-border-solid) transparent;
}
.ol-sidebar-inner::-webkit-scrollbar { width: 4px; }
.ol-sidebar-inner::-webkit-scrollbar-thumb { background: var(--ol-border-solid); border-radius: 2px; }

/* Brand */
.ol-brand { display: flex; align-items: center; gap: 12px; padding: 22px 18px 18px; }
.ol-brand-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--ol-indigo), var(--ol-indigo-l));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; flex-shrink: 0;
}
.ol-brand-txt { display: flex; flex-direction: column; }
.ol-brand-name { font-size: 15px; font-weight: 700; color: var(--ol-white); letter-spacing: -0.02em; }
.ol-brand-sub { font-size: 10px; color: var(--ol-dim); }

/* Nav */
.ol-nav { flex: 1; padding: 2px 10px; }
.ol-nav-group { margin-bottom: 12px; }
.ol-nav-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--ol-faint);
    padding: 8px 10px 4px; user-select: none;
}
.ol-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; border-radius: 7px;
    font-size: 13px; font-weight: 500; color: var(--ol-muted);
    transition: all 0.15s; cursor: pointer;
}
.ol-nav-link:hover { background: rgba(255,255,255,0.05); color: var(--ol-light); }
.ol-nav-link.active { background: rgba(99,102,241,0.12); color: var(--ol-indigo-l); }
.ol-nav-link i { width: 18px; text-align: center; font-size: 13px; flex-shrink: 0; }

/* Sidebar Footer */
.ol-sidebar-ft { margin-top: auto; padding: 14px 16px; border-top: 1px solid var(--ol-border); }
.ol-status-bar { display: flex; align-items: center; justify-content: space-between; padding: 0 2px 10px; font-size: 12px; }
.ol-status-lbl { color: var(--ol-dim); }
.ol-online { display: flex; align-items: center; gap: 6px; color: var(--ol-green); font-weight: 500; font-size: 12px; }
.ol-pulse {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ol-green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity:0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.ol-user { display: flex; align-items: center; gap: 10px; padding: 4px 2px; }
.ol-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: #1e293b; border: 2px solid var(--ol-indigo);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.ol-user-info { min-width: 0; }
.ol-user-name { font-size: 13px; font-weight: 500; color: var(--ol-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ol-user-email { font-size: 11px; color: var(--ol-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ol-logout { color: var(--ol-dim); font-size: 14px; padding: 4px; transition: color 0.15s; }
.ol-logout:hover { color: var(--ol-light); }

/* Hamburger */
.ol-hamburger {
    display: none; position: fixed; top: 14px; left: 14px; z-index: 10000;
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--ol-sidebar); color: var(--ol-light); border: 1px solid var(--ol-border);
    font-size: 18px; cursor: pointer; align-items: center; justify-content: center;
}

/* ============================================================
   MAIN
   ============================================================ */
.ol-main {
    margin-left: var(--ol-sidebar-w); flex: 1; padding: 30px 34px; min-height: 100vh;
}
.ol-page { display: none; }
.ol-page.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

.ol-title { font-size: 26px; font-weight: 700; color: var(--ol-white); letter-spacing: -0.02em; }
.ol-sub { font-size: 14px; color: var(--ol-dim); margin: 4px 0 24px; }

/* Grid */
.ol-grid { display: flex; gap: 22px; }
.ol-col-main { flex: 3; min-width: 300px; }
.ol-col-side { flex: 2; min-width: 280px; }

/* Cards */
.ol-card {
    background: var(--ol-card); border: 1px solid var(--ol-border);
    border-radius: var(--ol-radius); margin-bottom: 20px; overflow: hidden;
}
.ol-card-hd { padding: 22px 24px 0; }
.ol-card-hd h2 { font-size: 16px; font-weight: 600; color: var(--ol-light); }
.ol-card-hd p { font-size: 13px; color: var(--ol-dim); margin-top: 2px; }
.ol-card-bd { padding: 18px 24px 24px; }

/* Empty state */
.ol-empty { display: flex; flex-direction: column; align-items: center; padding: 60px 20px; }
.ol-waveform { width: 160px; margin-bottom: 16px; opacity: 0.35; }
.ol-waveform svg { width: 100%; height: auto; }
.ol-empty-text { font-size: 14px; color: var(--ol-dim); font-weight: 500; }

/* Status Rows */
.ol-srow {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 0; border-bottom: 1px solid var(--ol-border); font-size: 14px;
}
.ol-srow:last-of-type { border-bottom: none; }
.ol-sleft { display: flex; align-items: center; gap: 10px; color: var(--ol-mid); font-weight: 500; }
.ol-sright { display: flex; align-items: center; gap: 10px; }
.ol-sval { font-size: 13px; font-weight: 500; white-space: nowrap; }
.ol-sval.green { color: var(--ol-green); }
.ol-sval.orange { color: var(--ol-orange); }
.ol-sval.red { color: var(--ol-red); }
.ol-sval.dim { color: var(--ol-dim); }

/* Dots */
.ol-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ol-dot.green { background: var(--ol-green); }
.ol-dot.orange { background: var(--ol-orange); }
.ol-dot.red { background: var(--ol-red); }

/* Badges */
.ol-badge {
    display: inline-block; font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}
.ol-badge.green { background: rgba(34,197,94,0.1); color: var(--ol-green); }
.ol-badge.orange { background: rgba(245,158,11,0.1); color: var(--ol-orange); }
.ol-badge.red { background: rgba(239,68,68,0.1); color: var(--ol-red); }
.ol-badge-red {
    display: inline-block; font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; white-space: nowrap;
    background: rgba(239,68,68,0.08); color: var(--ol-red);
}

/* Update Banner */
.ol-update {
    margin-top: 16px; background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15); border-radius: 10px;
    padding: 16px 18px; display: flex; align-items: center; gap: 14px;
}
.ol-update-ic {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(59,130,246,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--ol-blue-l); font-size: 18px; flex-shrink: 0;
}
.ol-update-body { flex: 1; }
.ol-update-t { font-size: 13px; font-weight: 600; color: var(--ol-blue-l); }
.ol-update-d { font-size: 12px; color: var(--ol-dim); margin-top: 2px; }

/* Stats */
.ol-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px; margin-bottom: 24px;
}
.ol-stat {
    background: var(--ol-card); border: 1px solid var(--ol-border);
    border-radius: var(--ol-radius); padding: 18px 20px;
    display: flex; align-items: center; gap: 14px;
}
.ol-stat-ic {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.ol-stat-ic.blue { background: rgba(59,130,246,0.1); color: var(--ol-blue); }
.ol-stat-ic.green { background: rgba(34,197,94,0.1); color: var(--ol-green); }
.ol-stat-ic.red { background: rgba(239,68,68,0.1); color: var(--ol-red); }
.ol-stat-ic.purple { background: rgba(99,102,241,0.1); color: var(--ol-indigo-l); }
.ol-stat-ic.orange { background: rgba(245,158,11,0.1); color: var(--ol-orange); }
.ol-stat-num { font-size: 26px; font-weight: 700; color: var(--ol-white); }
.ol-stat-lbl { font-size: 12px; color: var(--ol-dim); }

/* Activity items */
.ol-act {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--ol-border);
}
.ol-act:last-child { border-bottom: none; }
.ol-act-ic {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--ol-dim); flex-shrink: 0; margin-top: 2px;
}
.ol-act-body { flex: 1; min-width: 0; }
.ol-act-t { font-size: 14px; font-weight: 500; color: var(--ol-light); }
.ol-act-d { font-size: 13px; color: var(--ol-dim); margin-top: 1px; }
.ol-act-time { font-size: 12px; color: var(--ol-faint); white-space: nowrap; flex-shrink: 0; margin-top: 2px; }

/* Devices grid */
.ol-devices {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.ol-device {
    background: var(--ol-card); border: 1px solid var(--ol-border);
    border-radius: var(--ol-radius); padding: 18px; transition: border-color 0.15s;
}
.ol-device:hover { border-color: rgba(255,255,255,0.1); }
.ol-dev-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ol-dev-name { font-size: 14px; font-weight: 600; color: var(--ol-light); }
.ol-dev-room { font-size: 12px; color: var(--ol-dim); margin-top: 2px; }
.ol-dev-status { font-size: 12px; color: var(--ol-dim); display: flex; align-items: center; gap: 6px; }

/* Toggle */
.ol-toggle {
    position: relative; width: 42px; height: 24px; background: #1e293b;
    border-radius: 12px; cursor: pointer; transition: background 0.2s;
    border: none; outline: none; flex-shrink: 0; padding: 0;
}
.ol-toggle.on { background: var(--ol-indigo); }
.ol-knob {
    position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
    background: #fff; border-radius: 50%; transition: transform 0.2s; display: block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.ol-toggle.on .ol-knob { transform: translateX(18px); }

/* Settings */
.ol-setting {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid var(--ol-border);
}
.ol-setting:last-child { border-bottom: none; }
.ol-set-label { font-size: 14px; font-weight: 500; color: var(--ol-light); }
.ol-set-desc { font-size: 12px; color: var(--ol-dim); margin-top: 1px; }

/* Tables */
.ol-table { width: 100%; border-collapse: collapse; }
.ol-table th {
    text-align: left; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--ol-faint);
    padding: 10px 14px; border-bottom: 1px solid var(--ol-border);
}
.ol-table td { padding: 12px 14px; font-size: 13px; color: var(--ol-mid); border-bottom: 1px solid var(--ol-border); }
.ol-table tr:hover td { background: rgba(255,255,255,0.02); }
.ol-table tr:last-child td { border-bottom: none; }

/* Subscription */
.ol-plan-badge { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ol-indigo-l); font-weight: 700; margin-bottom: 10px; }
.ol-plan-price { font-size: 44px; font-weight: 800; color: var(--ol-white); }
.ol-plan-price span { font-size: 16px; color: var(--ol-dim); font-weight: 500; }
.ol-plan-next { font-size: 13px; color: var(--ol-muted); margin-top: 6px; }

/* Buttons */
.ol-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 600;
    border: none; cursor: pointer; font-family: inherit; white-space: nowrap;
    transition: all 0.15s;
}
.ol-btn.blue { background: var(--ol-blue); color: #fff; }
.ol-btn.blue:hover { background: #2563eb; }
.ol-btn.indigo { background: var(--ol-indigo); color: #fff; }
.ol-btn.indigo:hover { background: #5558e6; }
.ol-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Chat */
.ol-chat-wrap {
    display: flex; flex-direction: column;
    height: calc(100vh - 160px); min-height: 400px;
    background: var(--ol-card); border: 1px solid var(--ol-border);
    border-radius: var(--ol-radius); overflow: hidden;
}
.ol-chat-msgs { flex: 1; overflow-y: auto; padding: 24px; }
.ol-chat-welcome {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; text-align: center; padding: 40px;
}
.ol-chat-welcome-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(99,102,241,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--ol-indigo-l); margin-bottom: 16px;
}
.ol-chat-welcome h2 { font-size: 22px; font-weight: 700; color: var(--ol-white); }
.ol-chat-welcome p { font-size: 14px; color: var(--ol-dim); margin-top: 6px; max-width: 400px; }
.ol-chat-suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.ol-chat-chip {
    padding: 8px 16px; border-radius: 20px;
    background: var(--ol-input); border: 1px solid var(--ol-border);
    font-size: 13px; color: var(--ol-mid); cursor: pointer;
    font-family: inherit; transition: all 0.15s;
}
.ol-chat-chip:hover { background: var(--ol-card-hover); border-color: var(--ol-border-solid); }

.ol-chat-input-area { padding: 16px 20px; border-top: 1px solid var(--ol-border); background: var(--ol-sidebar); }
.ol-chat-input-box { display: flex; gap: 10px; align-items: flex-end; }
.ol-chat-input-box textarea {
    flex: 1; resize: none; border: 1px solid var(--ol-border-solid); border-radius: 10px;
    padding: 10px 14px; font-size: 14px; font-family: inherit;
    background: var(--ol-input); color: var(--ol-light);
    outline: none; min-height: 42px; max-height: 120px; transition: border-color 0.15s;
}
.ol-chat-input-box textarea:focus { border-color: var(--ol-indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.ol-chat-send {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--ol-indigo); color: #fff; border: none;
    font-size: 16px; cursor: pointer; transition: background 0.15s;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ol-chat-send:hover { background: #5558e6; }
.ol-chat-disclaimer { font-size: 11px; color: var(--ol-faint); text-align: center; margin-top: 8px; }

.ol-chat-msg { display: flex; gap: 12px; margin-bottom: 20px; animation: fadeIn 0.25s ease; }
.ol-chat-msg.user { flex-direction: row-reverse; }
.ol-chat-msg-av {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.ol-chat-msg-av.bot { background: rgba(99,102,241,0.1); color: var(--ol-indigo-l); }
.ol-chat-msg-av.user { background: rgba(255,255,255,0.05); color: var(--ol-dim); }
.ol-chat-bubble { max-width: 70%; padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.6; }
.ol-chat-msg.bot .ol-chat-bubble { background: rgba(255,255,255,0.04); color: var(--ol-light); border-bottom-left-radius: 4px; }
.ol-chat-msg.user .ol-chat-bubble { background: var(--ol-indigo); color: #fff; border-bottom-right-radius: 4px; }
.ol-chat-bubble pre { background: #1a1f35; color: var(--ol-light); padding: 10px 14px; border-radius: 8px; overflow-x: auto; font-size: 13px; margin: 8px 0; }

.ol-chat-loading { display: flex; gap: 5px; padding: 12px 16px; }
.ol-chat-loading span {
    width: 8px; height: 8px; border-radius: 50%; background: var(--ol-dim);
    animation: bounce 1.4s ease-in-out infinite;
}
.ol-chat-loading span:nth-child(2) { animation-delay: 0.2s; }
.ol-chat-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
    0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Toast */
.ol-toast {
    position: fixed; top: 24px; right: 24px; z-index: 99999;
    background: var(--ol-card); border: 1px solid rgba(34,197,94,0.3);
    border-left: 4px solid var(--ol-green);
    border-radius: 10px; padding: 16px 20px; max-width: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 12px;
    animation: slideIn 0.35s ease;
}
@keyframes slideIn { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
.ol-toast i { color: var(--ol-green); font-size: 20px; flex-shrink: 0; }
.ol-toast-msg { font-size: 13px; color: var(--ol-light); font-weight: 500; line-height: 1.4; }

/* Info box */
.ol-info {
    background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15);
    border-radius: 10px; padding: 14px 18px; margin-bottom: 20px;
    font-size: 13px; color: var(--ol-blue-l);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ol-main { padding: 24px 18px; }
    .ol-grid { flex-direction: column; }
    .ol-col-main, .ol-col-side { min-width: unset; }
}
@media (max-width: 768px) {
    .ol-sidebar { transform: translateX(-100%); }
    .ol-sidebar.open { transform: translateX(0); box-shadow: 4px 0 20px rgba(0,0,0,0.5); }
    .ol-hamburger { display: flex; }
    .ol-main { margin-left: 0 !important; padding: 60px 16px 16px; }
    .ol-title { font-size: 22px; }
    .ol-stats { grid-template-columns: repeat(2, 1fr); }
    .ol-devices { grid-template-columns: 1fr; }
    .ol-update { flex-wrap: wrap; }
    .ol-chat-bubble { max-width: 85%; }
}
@media (max-width: 480px) {
    .ol-stats { grid-template-columns: 1fr; }
    .ol-voice-suggestions { flex-direction: column; }
}

/* ============================================================
   VOICE ORB
   ============================================================ */
.ol-voice-card { background: linear-gradient(135deg, #0f1525 0%, #131a32 50%, #0f1525 100%); border: 1px solid rgba(99,102,241,0.12); }
.ol-voice-hero { display: flex; flex-direction: column; align-items: center; padding: 48px 24px 36px; }
.ol-voice-orb {
    position: relative; width: 120px; height: 120px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.ol-voice-mic {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ol-indigo), #818cf8);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff; z-index: 2;
    box-shadow: 0 0 30px rgba(99,102,241,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ol-voice-orb:hover .ol-voice-mic { transform: scale(1.08); box-shadow: 0 0 50px rgba(99,102,241,0.5); }
.ol-voice-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    border-radius: 50%; border: 1.5px solid rgba(99,102,241,0.2);
    animation: voiceRing 3s ease-in-out infinite;
}
.ol-voice-ring-1 { width: 90px; height: 90px; animation-delay: 0s; }
.ol-voice-ring-2 { width: 108px; height: 108px; animation-delay: 0.5s; }
.ol-voice-ring-3 { width: 126px; height: 126px; animation-delay: 1s; }
@keyframes voiceRing {
    0%,100% { opacity:0.3; transform: translate(-50%,-50%) scale(0.95); }
    50% { opacity:0.7; transform: translate(-50%,-50%) scale(1.05); }
}
.ol-voice-orb.listening .ol-voice-mic { background: linear-gradient(135deg, #22c55e, #4ade80); box-shadow: 0 0 50px rgba(34,197,94,0.4); }
.ol-voice-orb.listening .ol-voice-ring { border-color: rgba(34,197,94,0.3); animation: voiceRingActive 1s ease-in-out infinite; }
@keyframes voiceRingActive {
    0%,100% { opacity:0.3; transform: translate(-50%,-50%) scale(0.9); }
    50% { opacity:1; transform: translate(-50%,-50%) scale(1.15); }
}
.ol-voice-title { font-size: 20px; font-weight: 700; color: var(--ol-white); margin-bottom: 4px; }
.ol-voice-sub { font-size: 13px; color: var(--ol-dim); margin-bottom: 20px; }
.ol-voice-suggestions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.ol-voice-result {
    margin-top: 18px; padding: 14px 20px; border-radius: 10px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--ol-border);
    width: 100%; max-width: 500px; text-align: left; animation: fadeIn 0.3s ease;
}
.ol-voice-result-q { font-size: 13px; color: var(--ol-dim); margin-bottom: 6px; }
.ol-voice-result-a { font-size: 14px; color: var(--ol-light); line-height: 1.6; }

/* Quick Chat on Dashboard */
.ol-quick-chat { max-height: 340px; display: flex; flex-direction: column; }
.ol-quick-msgs {
    flex: 1; overflow-y: auto; max-height: 240px; padding: 4px 0;
    scrollbar-width: thin; scrollbar-color: var(--ol-border-solid) transparent;
}
