/* ═══════════════════════════════════════════════════════════
   ACC V3.0 — ADMIN CONTROL CENTER
   Full-page standalone design
   ═══════════════════════════════════════════════════════════ */
@keyframes acc-in    { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes acc-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes acc-blink { 0%,100%{opacity:1} 50%{opacity:.15} }
@keyframes acc-spin  { to{transform:rotate(360deg)} }
@keyframes acc-fill  { from{width:0} to{width:var(--w,0%)} }
@keyframes acc-pop   { from{opacity:0;transform:scale(.9) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes acc-glow  { 0%,100%{box-shadow:0 0 20px rgba(139,92,246,.2)} 50%{box-shadow:0 0 40px rgba(139,92,246,.5)} }
@keyframes acc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes acc-row-glow { 0%,100%{box-shadow:0 0 0 rgba(139,92,246,0)} 50%{box-shadow:0 0 20px rgba(139,92,246,.2)} }

/* ── Root Container ── */
.acc-page {
    animation: acc-in .5s cubic-bezier(.16,1,.3,1);
    color: #fff;
    min-height: 100%;
    padding-bottom: 60px;
    overflow-x: hidden;
}

/* ── Hero Header ── */
.acc-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(34,211,238,.07) 40%, rgba(16,185,129,.06) 70%, rgba(251,191,36,.04) 100%);
    border: 1px solid rgba(139,92,246,.15);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 24px;
    overflow: hidden;
}
.acc-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #22d3ee, #10b981, transparent);
}
.acc-hero::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%);
    pointer-events: none;
}
.acc-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.acc-hero-left { display: flex; align-items: center; gap: 18px; }
.acc-hero-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
    box-shadow: 0 0 30px rgba(139,92,246,.4);
    animation: acc-float 3s ease-in-out infinite;
    flex-shrink: 0;
}
.acc-hero-title { font-size: 26px; font-weight: 900; letter-spacing: -.5px; line-height: 1.1; }
.acc-hero-title span {
    background: linear-gradient(135deg, #fff 0%, #e9d5ff 25%, #a78bfa 50%, #22d3ee 75%, #34d399 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.acc-hero-sub { font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 5px; }
.acc-hero-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acc-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 20px;
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
    border: 1px solid;
}
.acc-badge-live   { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.2);  color: #f87171; }
.acc-badge-live .acc-dot { width:6px; height:6px; border-radius:50%; background:#f87171; animation:acc-blink 1.2s infinite; }
.acc-badge-purple { background: rgba(139,92,246,.1);  border-color: rgba(139,92,246,.25); color: #a78bfa; }
.acc-badge-cyan   { background: rgba(34,211,238,.08); border-color: rgba(34,211,238,.2);  color: #22d3ee; }
.acc-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.acc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 14px;
    font-size: 13px; font-weight: 800; cursor: pointer;
    transition: all .25s; border: 1px solid; letter-spacing: .2px;
}
.acc-btn-ghost {
    background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
}
.acc-btn-ghost:hover { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.4); color: #c4b5fd; box-shadow: 0 0 16px rgba(139,92,246,.15); }
.acc-btn-purple {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    border-color: rgba(139,92,246,.5); color: #fff;
    box-shadow: 0 4px 20px rgba(139,92,246,.4);
}
.acc-btn-purple:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(139,92,246,.65); filter: brightness(1.1); }
.acc-btn i.spin { animation: acc-spin .6s linear; }

/* ── Stat Cards Row ── */
.acc-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
@media (max-width: 1200px) { .acc-stats-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .acc-stats-row { grid-template-columns: repeat(2, 1fr); } }
.acc-stat-card {
    background: rgba(12,12,28,.65);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px; padding: 20px 22px;
    transition: all .3s; position: relative; overflow: hidden;
    cursor: default;
}
.acc-stat-card:hover { border-color: var(--acc-color, rgba(139,92,246,.4)); transform: translateY(-3px); box-shadow: 0 0 30px var(--acc-color, rgba(139,92,246,.15)), 0 8px 24px rgba(0,0,0,.4); background: rgba(12,12,28,.9); }
.acc-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--acc-color, #8b5cf6);
    opacity: .7;
}
.acc-stat-label { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.acc-stat-val   { font-size: 30px; font-weight: 900; line-height: 1; color: var(--acc-color, #fff); font-family: 'Outfit', sans-serif; }
.acc-stat-sub   { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 6px; }
.acc-stat-bar   { height: 3px; border-radius: 2px; background: rgba(255,255,255,.06); margin-top: 12px; overflow: hidden; }
.acc-stat-fill  { height: 100%; border-radius: 2px; background: var(--acc-color, #8b5cf6); animation: acc-fill .8s ease-out forwards; }

/* ── Section Header ── */
.acc-sec {
    display: flex; align-items: center; gap: 14px;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(139,92,246,.08);
    margin-top: 8px;
}
.acc-sec:first-of-type { border-top: none; padding-top: 0; }
.acc-sec-icon {
    width: 38px; height: 38px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.acc-sec-text h3 { font-size: 16px; font-weight: 800; color: #fff; }
.acc-sec-text p  { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.acc-sec-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ── Health Monitor ── */
.acc-health-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 8px;
}
@media (max-width: 900px) { .acc-health-grid { grid-template-columns: repeat(2, 1fr); } }
.acc-health-card {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 20px;
    transition: all .2s;
}
.acc-health-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.acc-health-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.acc-health-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.acc-health-val { font-size: 28px; font-weight: 900; font-family: 'Outfit', sans-serif; }
.acc-health-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.35); margin-top: 2px; }
.acc-health-bar-bg { height: 4px; border-radius: 2px; background: rgba(255,255,255,.06); margin-top: 12px; overflow: hidden; }
.acc-health-bar-fill { height: 100%; border-radius: 2px; animation: acc-fill .8s ease-out forwards; }
.acc-health-meta { font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 8px; }

/* ── Bot Management ── */
.acc-bot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 900px) { .acc-bot-grid { grid-template-columns: 1fr; } }
.acc-bot-group {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px; overflow: hidden;
    transition: all .3s; position: relative;
}
.acc-bot-group::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,.5), rgba(34,211,238,.3), transparent);
    opacity: 0; transition: opacity .3s;
}
.acc-bot-group:hover {
    border-color: rgba(139,92,246,.25);
    box-shadow: 0 0 30px rgba(139,92,246,.08);
}
.acc-bot-group:hover::before { opacity: 1; }
.acc-bot-group-hdr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(135deg, rgba(139,92,246,.06) 0%, rgba(0,0,0,.25) 100%);
}
.acc-bot-group-title { display: flex; align-items: center; gap: 10px; }
.acc-bot-group-title h4 { font-size: 13px; font-weight: 800; color: #fff; }
.acc-bot-group-title span { font-size: 10px; color: rgba(255,255,255,.35); }
.acc-bot-group-badge {
    font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px;
}
.acc-bot-list { padding: 8px; max-height: 260px; overflow-y: auto; }
.acc-bot-list::-webkit-scrollbar { width:4px; }
.acc-bot-list::-webkit-scrollbar-thumb { background:rgba(139,92,246,.3); border-radius:4px; }
.acc-bot-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 12px;
    transition: all .2s; cursor: pointer;
    border: 1px solid transparent;
}
.acc-bot-row:hover {
    background: var(--bot-glow-bg, rgba(139,92,246,.08));
    border-color: var(--bot-glow-border, rgba(139,92,246,.4));
    transform: translateX(4px);
    box-shadow: 0 0 24px var(--bot-glow-shadow, rgba(139,92,246,.18)), inset 0 0 16px var(--bot-glow-inner, rgba(139,92,246,.04));
}
.acc-bot-avatar {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #fff; flex-shrink: 0;
}
.acc-bot-info { flex: 1; min-width: 0; }
.acc-bot-name { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acc-bot-sub  { font-size: 10.5px; color: rgba(255,255,255,.35); margin-top: 1px; }
.acc-bot-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.acc-lat-badge {
    font-size: 10px; font-weight: 800;
    padding: 3px 8px; border-radius: 8px;
    background: rgba(255,255,255,.05); color: rgba(255,255,255,.45);
}
.acc-lat-badge.good  { background: rgba(16,185,129,.1);  color: #34d399; }
.acc-lat-badge.warn  { background: rgba(251,191,36,.1);  color: #fbbf24; }
.acc-lat-badge.bad   { background: rgba(244,63,94,.1);   color: #f87171; }
.acc-status-pill {
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 9px; border-radius: 20px; border: 1px solid;
}
.acc-status-pill.online  { background: rgba(16,185,129,.1);  border-color: rgba(16,185,129,.2);  color: #34d399; }
.acc-status-pill.offline { background: rgba(244,63,94,.1);   border-color: rgba(244,63,94,.2);   color: #f87171; }
.acc-status-pill.maintenance { background: rgba(251,191,36,.1); border-color: rgba(251,191,36,.2); color: #fbbf24; }
.acc-bot-action-btn {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; font-size: 12px;
}
.acc-bot-action-btn:hover { background: rgba(139,92,246,.15); border-color: rgba(139,92,246,.3); color: #a78bfa; }
.acc-bot-bulk {
    display: flex; gap: 8px; padding: 12px 12px;
    border-top: 1px solid rgba(255,255,255,.04);
    background: rgba(0,0,0,.15);
}
.acc-bulk-btn {
    flex: 1; padding: 10px 8px; border-radius: 12px;
    font-size: 11.5px; font-weight: 800; cursor: pointer;
    transition: all .25s; border: 1px solid; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.acc-bulk-online  { background: rgba(16,185,129,.08);  border-color: rgba(16,185,129,.25);  color: #34d399; }
.acc-bulk-online:hover  { background: rgba(16,185,129,.2); border-color: #34d399; box-shadow: 0 0 20px rgba(16,185,129,.25); transform: translateY(-1px); }
.acc-bulk-maint   { background: rgba(251,191,36,.08);  border-color: rgba(251,191,36,.25);  color: #fbbf24; }
.acc-bulk-maint:hover   { background: rgba(251,191,36,.2); border-color: #fbbf24; box-shadow: 0 0 20px rgba(251,191,36,.25); transform: translateY(-1px); }
.acc-bulk-offline { background: rgba(244,63,94,.08);   border-color: rgba(244,63,94,.25);   color: #f87171; }
.acc-bulk-offline:hover { background: rgba(244,63,94,.2); border-color: #f87171; box-shadow: 0 0 20px rgba(244,63,94,.25); transform: translateY(-1px); }

/* ── Maintenance Modes ── */
.acc-maint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 900px) { .acc-maint-grid { grid-template-columns: 1fr; } }
.acc-maint-card {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 20px;
    transition: all .25s;
}
.acc-maint-card:hover {
    border-color: rgba(251,191,36,.3);
    box-shadow: 0 0 20px rgba(251,191,36,.1);
    transform: translateY(-1px);
}
.acc-maint-card.active-maint {
    border-color: rgba(251,191,36,.25);
    background: rgba(251,191,36,.03);
}
.acc-maint-top {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.acc-maint-left { display: flex; align-items: center; gap: 12px; }
.acc-maint-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.acc-maint-name { font-size: 14px; font-weight: 800; color: #fff; }
.acc-maint-url  { font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
.acc-maint-status-tag {
    font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    padding: 4px 10px; border-radius: 20px; border: 1px solid;
}
.acc-maint-status-tag.online { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); color: #34d399; }
.acc-maint-status-tag.maint  { background: rgba(251,191,36,.1); border-color: rgba(251,191,36,.2); color: #fbbf24; }
/* Toggle */
.acc-toggle-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.acc-toggle-lbl { font-size: 12px; color: rgba(255,255,255,.5); }
.acc-toggle {
    position: relative; width: 44px; height: 24px; cursor: pointer;
}
.acc-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.acc-toggle-slider {
    position: absolute; inset: 0; border-radius: 24px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
    transition: all .3s;
}
.acc-toggle-slider::after {
    content: ''; position: absolute;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,255,255,.5); top: 2px; left: 2px;
    transition: all .3s;
}
.acc-toggle input:checked ~ .acc-toggle-slider { background: #f59e0b; border-color: #f59e0b; }
.acc-toggle input:checked ~ .acc-toggle-slider::after { transform: translateX(20px); background: #fff; }
.acc-maint-textarea {
    width: 100%; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 10px 12px; color: #fff; font-size: 12.5px;
    resize: none; height: 64px; outline: none; transition: border-color .2s; font-family: inherit;
    margin-bottom: 10px;
}
.acc-maint-textarea:focus { border-color: rgba(139,92,246,.4); }
.acc-maint-footer { display: flex; align-items: center; gap: 8px; }
.acc-maint-cc { font-size: 10px; color: rgba(255,255,255,.25); margin-left: auto; }
.acc-save-btn {
    flex: 1; padding: 10px; border-radius: 12px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    border: 1px solid rgba(139,92,246,.4); color: #fff; font-size: 12.5px; font-weight: 800;
    cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(139,92,246,.3);
}
.acc-save-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,92,246,.55); filter: brightness(1.08); }
.acc-auto-end { margin-top: 10px; }
.acc-auto-end label { font-size: 10.5px; color: rgba(255,255,255,.35); display: block; margin-bottom: 5px; }
.acc-datetime-input {
    width: 100%; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px; padding: 7px 10px; color: #fff; font-size: 12px; outline: none;
    transition: border-color .2s; font-family: inherit;
}
.acc-datetime-input:focus { border-color: rgba(139,92,246,.4); }

/* ── Global Controls ── */
.acc-global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 1000px) { .acc-global-grid { grid-template-columns: repeat(2, 1fr); } }
.acc-global-card {
    position: relative;
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 22px 20px;
    cursor: pointer; transition: all .25s; overflow: hidden;
    display: flex; flex-direction: column; gap: 14px;
}
.acc-global-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 18px;
    background: var(--acc-glow, rgba(139,92,246,.06));
    opacity: 0; transition: opacity .3s;
}
.acc-global-card:hover::before { opacity: 1; }
.acc-global-card:hover { border-color: var(--acc-border, rgba(139,92,246,.3)); transform: translateY(-4px); box-shadow: 0 0 40px var(--acc-glow, rgba(139,92,246,.15)), 0 12px 30px rgba(0,0,0,.5); }
.acc-global-card:hover .acc-global-arrow { opacity: 1; transform: translateX(4px); }
.acc-global-icon-wrap {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; border: 1px solid;
    transition: all .25s;
}
.acc-global-card:hover .acc-global-icon-wrap { transform: scale(1.08); }
.acc-global-title { font-size: 15px; font-weight: 800; color: #fff; }
.acc-global-desc  { font-size: 11.5px; color: rgba(255,255,255,.35); margin-top: 3px; line-height: 1.4; }
.acc-global-arrow {
    position: absolute; top: 20px; right: 20px;
    font-size: 14px; color: rgba(255,255,255,.2);
    opacity: 0; transition: all .25s;
}
.acc-global-card.gc-green  { --acc-glow: rgba(16,185,129,.15);  --acc-border: rgba(16,185,129,.5); }
.acc-global-card.gc-amber  { --acc-glow: rgba(251,191,36,.15);  --acc-border: rgba(251,191,36,.5); }
.acc-global-card.gc-red    { --acc-glow: rgba(244,63,94,.15);   --acc-border: rgba(244,63,94,.5); }
.acc-global-card.gc-blue   { --acc-glow: rgba(59,130,246,.15);  --acc-border: rgba(59,130,246,.5); }

/* ── Status Messages ── */
.acc-msg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 900px) { .acc-msg-layout { grid-template-columns: 1fr; } }
.acc-msg-composer, .acc-msg-feed {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; overflow: visible;
}
.acc-msg-panel-hdr {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(0,0,0,.2);
    display: flex; align-items: center; justify-content: space-between;
}
.acc-msg-panel-hdr h4 { font-size: 13px; font-weight: 800; color: #fff; }
.acc-msg-panel-hdr span { font-size: 11px; color: rgba(255,255,255,.3); }
.acc-msg-panel-body { padding: 18px; }
.acc-type-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.acc-type-tab {
    padding: 6px 14px; border-radius: 10px;
    font-size: 11.5px; font-weight: 700; cursor: pointer;
    transition: all .2s; border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03); color: rgba(255,255,255,.4);
}
.acc-type-tab.active { color: #fff; }
.acc-type-tab[data-type="info"].active    { background: rgba(59,130,246,.15);  border-color: rgba(59,130,246,.3);  color: #60a5fa; }
.acc-type-tab[data-type="warning"].active { background: rgba(251,191,36,.12);  border-color: rgba(251,191,36,.3);  color: #fbbf24; }
.acc-type-tab[data-type="resolved"].active{ background: rgba(16,185,129,.12);  border-color: rgba(16,185,129,.3);  color: #34d399; }
.acc-type-tab[data-type="critical"].active{ background: rgba(244,63,94,.12);   border-color: rgba(244,63,94,.3);   color: #f87171; }
.acc-msg-input {
    width: 100%; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 10px 12px; color: #fff; font-size: 13px;
    outline: none; transition: border-color .2s; font-family: inherit; margin-bottom: 10px;
}
.acc-msg-input:focus { border-color: rgba(139,92,246,.4); }
.acc-msg-textarea {
    width: 100%; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 10px 12px; color: #fff; font-size: 12.5px;
    resize: none; height: 80px; outline: none; transition: border-color .2s;
    font-family: inherit; margin-bottom: 12px;
}
.acc-msg-textarea:focus { border-color: rgba(139,92,246,.4); }
.acc-msg-preview-box {
    background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px; padding: 12px 14px; margin-bottom: 12px;
    display: none;
}
.acc-msg-preview-box.show { display: block; }
.acc-msg-preview-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.acc-msg-preview-content { display: flex; align-items: flex-start; gap: 10px; }
.acc-msg-preview-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.acc-msg-preview-text h5 { font-size: 13px; font-weight: 700; color: #fff; }
.acc-msg-preview-text p  { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 3px; }
.acc-publish-btn {
    width: 100%; padding: 11px; border-radius: 12px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    border: 1px solid rgba(139,92,246,.4); color: #fff; font-size: 13px; font-weight: 800;
    cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 7px;
    box-shadow: 0 4px 18px rgba(139,92,246,.3);
}
.acc-publish-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(139,92,246,.55); filter: brightness(1.08); }
/* Feed */
.acc-feed-empty {
    text-align: center; padding: 40px 20px;
    color: rgba(255,255,255,.2); font-size: 13px;
}
.acc-feed-empty i { font-size: 36px; display: block; margin-bottom: 10px; opacity: .3; }
.acc-feed-item {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .2s;
    animation: acc-pop .3s ease;
}
.acc-feed-item:last-child { border-bottom: none; }
.acc-feed-item:hover { background: rgba(255,255,255,.02); }
.acc-feed-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.acc-feed-type-badge {
    font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 9px; border-radius: 20px; border: 1px solid;
}
.acc-feed-type-info     { background: rgba(59,130,246,.1);  border-color: rgba(59,130,246,.25);  color: #60a5fa; }
.acc-feed-type-warning  { background: rgba(251,191,36,.1);  border-color: rgba(251,191,36,.25);  color: #fbbf24; }
.acc-feed-type-resolved { background: rgba(16,185,129,.1);  border-color: rgba(16,185,129,.25);  color: #34d399; }
.acc-feed-type-critical { background: rgba(244,63,94,.1);   border-color: rgba(244,63,94,.25);   color: #f87171; }
.acc-feed-time { font-size: 10px; color: rgba(255,255,255,.25); margin-left: auto; }
.acc-feed-title { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.acc-feed-body  { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.acc-feed-actions { display: flex; gap: 6px; margin-top: 10px; }
.acc-feed-act-btn {
    padding: 4px 12px; border-radius: 8px; font-size: 11px; font-weight: 700;
    cursor: pointer; transition: all .2s; border: 1px solid;
}
.acc-feed-edit { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.2); color: #a78bfa; }
.acc-feed-edit:hover { background: rgba(139,92,246,.18); }
.acc-feed-del  { background: rgba(244,63,94,.06);   border-color: rgba(244,63,94,.15);  color: #f87171; }
.acc-feed-del:hover  { background: rgba(244,63,94,.15); }

/* ── Scheduled Maintenance ── */
.acc-sched-form {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 20px;
    margin-bottom: 14px;
}
.acc-sched-form-title { font-size: 12px; font-weight: 800; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.acc-sched-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
@media (max-width: 700px) { .acc-sched-form-grid { grid-template-columns: 1fr; } }
.acc-field-wrap { display: flex; flex-direction: column; gap: 5px; }
.acc-field-wrap label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; }
.acc-field {
    background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 9px 12px; color: #fff; font-size: 12.5px;
    outline: none; transition: border-color .2s; font-family: inherit;
}
.acc-field:focus { border-color: rgba(139,92,246,.5); box-shadow: 0 0 0 3px rgba(139,92,246,.08); }
.acc-field option { background: #0d0d1a; }

/* ── Custom Select Dropdown ── */
.acc-field[type="select"], select.acc-field {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(167,139,250,.7)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}
select.acc-field:focus {
    border-color: rgba(139,92,246,.5);
    box-shadow: 0 0 0 3px rgba(139,92,246,.1);
}
select.acc-field option {
    background: #0d0d1a;
    color: #fff;
    padding: 8px;
}

.acc-sched-list { display: flex; flex-direction: column; gap: 8px; }
.acc-sched-empty { text-align: center; padding: 30px; color: rgba(255,255,255,.2); font-size: 12.5px; }
.acc-sched-empty i { font-size: 28px; display: block; margin-bottom: 8px; opacity: .25; }
.acc-sched-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(10,10,22,.5); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 14px 16px;
    animation: acc-pop .3s ease;
}
.acc-sched-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.acc-sched-info { flex: 1; min-width: 0; }
.acc-sched-title { font-size: 13px; font-weight: 700; color: #fff; }
.acc-sched-meta  { font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
.acc-sched-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.acc-priority { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 3px 9px; border-radius: 20px; border: 1px solid; }
.acc-priority.priority-low      { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); color: #34d399; }
.acc-priority.priority-medium   { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.2); color: #60a5fa; }
.acc-priority.priority-high     { background: rgba(251,191,36,.08); border-color: rgba(251,191,36,.2); color: #fbbf24; }
.acc-priority.priority-critical { background: rgba(244,63,94,.08);  border-color: rgba(244,63,94,.2);  color: #f87171; }
.acc-del-btn {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(244,63,94,.06); border: 1px solid rgba(244,63,94,.15);
    color: #f87171; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; font-size: 11px;
}
.acc-del-btn:hover { background: rgba(244,63,94,.18); }

/* ── Incidents ── */
.acc-inc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .acc-inc-layout { grid-template-columns: 1fr; } }
.acc-inc-form, .acc-inc-list-wrap {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; overflow: visible;
}
.acc-inc-form-body { padding: 18px; }
.acc-inc-list-hdr {
    padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(0,0,0,.2); display: flex; align-items: center; justify-content: space-between;
}
.acc-inc-list-hdr h4 { font-size: 13px; font-weight: 800; color: #fff; }
.acc-inc-list-body { padding: 8px; }
.acc-inc-item {
    padding: 12px 14px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.04);
    margin-bottom: 6px; transition: all .2s;
    animation: acc-pop .3s ease;
}
.acc-inc-item:hover { background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.08); }
.acc-inc-item:last-child { margin-bottom: 0; }
.acc-inc-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.acc-inc-title-text { font-size: 13px; font-weight: 700; color: #fff; flex: 1; }
.acc-inc-body { font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.4; }
.acc-inc-actions { display: flex; gap: 6px; margin-top: 8px; }
.acc-inc-resolve-btn {
    padding: 5px 14px; border-radius: 10px; font-size: 11px; font-weight: 800;
    background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); color: #34d399;
    cursor: pointer; transition: all .25s;
}
.acc-inc-resolve-btn:hover { background: rgba(16,185,129,.2); border-color: #34d399; box-shadow: 0 0 14px rgba(16,185,129,.2); transform: translateY(-1px); }

/* ── Public Preview ── */
.acc-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 900px) { .acc-preview-grid { grid-template-columns: repeat(2, 1fr); } }
.acc-preview-card {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(16,185,129,.1);
    border-radius: 16px; padding: 22px 18px;
    text-align: center; transition: all .25s;
}
.acc-preview-card:hover { border-color: rgba(16,185,129,.4); transform: translateY(-3px); box-shadow: 0 0 25px rgba(16,185,129,.15), 0 8px 24px rgba(0,0,0,.4); }
.acc-preview-card.status-offline { border-color: rgba(244,63,94,.15); }
.acc-preview-card.status-maintenance { border-color: rgba(251,191,36,.15); }
.acc-preview-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #10b981; margin: 0 auto 14px;
    transition: all .25s;
}
.acc-preview-card:hover .acc-preview-icon { transform: scale(1.05); }
.acc-preview-card.status-offline .acc-preview-icon { background: rgba(244,63,94,.1); border-color: rgba(244,63,94,.15); color: #f43f5e; }
.acc-preview-card.status-maintenance .acc-preview-icon { background: rgba(251,191,36,.1); border-color: rgba(251,191,36,.15); color: #fbbf24; }
.acc-preview-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.acc-preview-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px; border: 1px solid;
}
.acc-preview-pill.online { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); color: #34d399; }
.acc-preview-pill.offline { background: rgba(244,63,94,.1); border-color: rgba(244,63,94,.2); color: #f87171; }
.acc-preview-pill.maintenance { background: rgba(251,191,36,.1); border-color: rgba(251,191,36,.2); color: #fbbf24; }
.acc-preview-pvdot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.acc-preview-uptime { font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 8px; }

/* ── VIP Whitelist ── */
.acc-vip-wrap {
    background: rgba(10,10,22,.5);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; overflow: visible;
}
.acc-vip-hdr {
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(0,0,0,.2); display: flex; align-items: center; justify-content: space-between;
}
.acc-vip-hdr h4 { font-size: 13px; font-weight: 800; color: #fff; }
.acc-vip-count { font-size: 11px; color: rgba(255,255,255,.3); }
.acc-vip-add-row { display: flex; gap: 8px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.04); }
.acc-vip-input {
    flex: 1; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 9px 12px; color: #fff; font-size: 13px;
    outline: none; transition: border-color .2s; font-family: inherit;
}
.acc-vip-input:focus { border-color: rgba(139,92,246,.4); }
.acc-vip-add-btn {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    border: 1px solid rgba(139,92,246,.4); color: #fff; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s; box-shadow: 0 4px 14px rgba(139,92,246,.3);
}
.acc-vip-add-btn:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(139,92,246,.55); filter: brightness(1.1); }
.acc-vip-list { padding: 8px; }
.acc-vip-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 10px;
    transition: background .2s;
}
.acc-vip-item:hover { background: rgba(255,255,255,.02); }
.acc-vip-avatar {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.acc-vip-name { font-size: 13px; font-weight: 700; color: #fff; }
.acc-vip-role { font-size: 10.5px; color: rgba(255,255,255,.3); }
.acc-vip-remove {
    margin-left: auto; width: 26px; height: 26px; border-radius: 8px;
    background: transparent; border: none; color: rgba(244,63,94,.4);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 13px; transition: all .2s;
}
.acc-vip-remove:hover { background: rgba(244,63,94,.1); color: #f87171; }

/* ── Confirm Modal ── */
.acc-modal-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(2,2,8,.85); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.acc-modal-overlay.show { opacity: 1; pointer-events: all; }
.acc-modal-box {
    background: #090914; border: 1px solid rgba(139,92,246,.25);
    border-radius: 22px; padding: 32px; width: 100%; max-width: 420px;
    transform: scale(.92) translateY(10px); transition: transform .3s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 30px 80px rgba(0,0,0,.9);
}
.acc-modal-overlay.show .acc-modal-box { transform: scale(1) translateY(0); }
.acc-modal-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.acc-modal-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.acc-modal-desc  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 24px; }
.acc-modal-btns  { display: flex; gap: 10px; }
.acc-modal-cancel {
    flex: 1; padding: 12px; border-radius: 12px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.6); font-size: 13.5px; font-weight: 700;
    cursor: pointer; transition: all .2s;
}
.acc-modal-cancel:hover { background: rgba(255,255,255,.08); }
.acc-modal-confirm {
    flex: 1; padding: 12px; border-radius: 12px;
    border: none; color: #fff; font-size: 13.5px; font-weight: 700;
    cursor: pointer; transition: all .2s;
}
.acc-modal-confirm:hover { transform: translateY(-1px); }

/* ── Bot Detail Modal ── */
.acc-bot-modal-overlay {
    position: fixed; inset: 0; z-index: 99998;
    background: rgba(2,2,8,.85); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.acc-bot-modal-overlay.show { opacity: 1; pointer-events: all; }
.acc-bot-modal-box {
    background: #090914; border: 1px solid rgba(139,92,246,.2);
    border-radius: 22px; width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
    transform: scale(.92) translateY(10px); transition: transform .3s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 30px 80px rgba(0,0,0,.9);
}
.acc-bot-modal-box::-webkit-scrollbar { width: 4px; }
.acc-bot-modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 2px; }
.acc-bot-modal-overlay.show .acc-bot-modal-box { transform: scale(1) translateY(0); }
.acc-bot-modal-hdr {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.06);
    position: sticky; top: 0; background: #090914; z-index: 1;
}
.acc-bot-modal-avatar { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.acc-bot-modal-info h3 { font-size: 17px; font-weight: 800; color: #fff; }
.acc-bot-modal-info p  { font-size: 11.5px; color: rgba(255,255,255,.35); margin-top: 3px; }
.acc-bot-modal-close {
    margin-left: auto; width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; font-size: 13px;
}
.acc-bot-modal-close:hover { background: rgba(244,63,94,.15); border-color: rgba(244,63,94,.3); color: #f87171; }
.acc-bot-modal-body { padding: 22px 24px; }
.acc-bot-modal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.acc-bot-stat-card { background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 14px; text-align: center; }
.acc-bot-stat-val { font-size: 22px; font-weight: 900; font-family: 'Outfit', sans-serif; }
.acc-bot-stat-lbl { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-top: 4px; }
.acc-bot-modal-section { margin-bottom: 18px; }
.acc-bot-modal-section-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.acc-bot-status-btns { display: flex; gap: 8px; }
.acc-bot-status-btn {
    flex: 1; padding: 9px; border-radius: 10px; font-size: 12px; font-weight: 700;
    cursor: pointer; transition: all .2s; border: 1px solid; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.acc-bot-status-btn.online   { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); color: #34d399; }
.acc-bot-status-btn.online.active, .acc-bot-status-btn.online:hover { background: rgba(16,185,129,.2); border-color: #34d399; }
.acc-bot-status-btn.maint    { background: rgba(251,191,36,.08); border-color: rgba(251,191,36,.2); color: #fbbf24; }
.acc-bot-status-btn.maint.active, .acc-bot-status-btn.maint:hover { background: rgba(251,191,36,.2); border-color: #fbbf24; }
.acc-bot-status-btn.offline  { background: rgba(244,63,94,.08);  border-color: rgba(244,63,94,.2);  color: #f87171; }
.acc-bot-status-btn.offline.active, .acc-bot-status-btn.offline:hover { background: rgba(244,63,94,.2); border-color: #f87171; }
.acc-bot-modal-notif-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.acc-notif-btn {
    padding: 7px 14px; border-radius: 10px; font-size: 11.5px; font-weight: 700;
    cursor: pointer; transition: all .2s; border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03); color: rgba(255,255,255,.45);
}
.acc-notif-btn.active { background: rgba(139,92,246,.15); border-color: rgba(139,92,246,.3); color: #a78bfa; }
.acc-bot-modal-save {
    width: 100%; padding: 13px; border-radius: 14px; margin-top: 6px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
    border: 1px solid rgba(139,92,246,.4); color: #fff; font-size: 13.5px; font-weight: 800;
    cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 18px rgba(139,92,246,.35);
}
.acc-bot-modal-save:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(139,92,246,.6); filter: brightness(1.08); }

/* ── Color Helpers ── */
.ci-purple { background: rgba(139,92,246,.18); color: #c4b5fd; border: 1px solid rgba(139,92,246,.25); }
.ci-cyan   { background: rgba(34,211,238,.15);  color: #22d3ee; border: 1px solid rgba(34,211,238,.2); }
.ci-green  { background: rgba(16,185,129,.15);  color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.ci-amber  { background: rgba(251,191,36,.15);  color: #fbbf24; border: 1px solid rgba(251,191,36,.2); }
.ci-red    { background: rgba(244,63,94,.15);   color: #f87171; border: 1px solid rgba(244,63,94,.2); }
.ci-blue   { background: rgba(59,130,246,.15);  color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
.ci-orange { background: rgba(249,115,22,.15);  color: #fb923c; border: 1px solid rgba(249,115,22,.2); }