body {
    background-color: #080c08;
    color: #a0c8a0;
    margin: 0;
    padding: 0;
    min-height: 100%;
    height: auto;
    font-family: 'Fira Code', 'Source Code Pro', 'Courier New', monospace;
    font-weight: 400;
    font-size: 13px;
}
img {
    border: medium none;
    max-width: 100%;
    height: auto;
}
a {
    color: #00cc44;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}
a:hover {
    color: #33ff66;
    text-shadow: 0 0 6px rgba(0, 204, 68, 0.3);
}

hr {
    margin: 0;
    padding: 0;
    border-color: rgba(0, 204, 68, 0.12);
}

div#data {
    position: relative;
    padding: 12px 12px;
}

div#page {
    background-color: #0a0f0a;
    max-width: 976px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    border-left: 1px solid rgba(0, 204, 68, 0.06);
    border-right: 1px solid rgba(0, 204, 68, 0.06);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

div#formdiv {
    display: none;
    background-color: #0c120c;
    position: fixed;
    padding: 20px;
    margin: 0;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 204, 68, 0.2);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 204, 68, 0.05);
    z-index: 9999;
}

div.mainbody {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 600px;
    flex: 1;
}

table td {
    vertical-align: top;
    font-size: 13px;
}

font.label {
    color: #00cc44;
    font-weight: 500;
    letter-spacing: 0.05em;
}

div.search {
    display: none;
    float: right;
}
input.search {
    background-color: rgba(10, 15, 10, 0.8);
    color: #a0c8a0;
    border: 1px solid rgba(0, 204, 68, 0.15);
    border-radius: 2px;
    padding: 6px 10px;
    font-family: 'Fira Code', monospace;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input.search:focus {
    border-color: rgba(0, 204, 68, 0.4);
    box-shadow: 0 0 8px rgba(0, 204, 68, 0.1);
    outline: none;
}

.suggestionsBox {
    position: absolute;
    z-index: 100;
    margin: 0;
    width: 220px;
    background-color: #0c120c;
    border-radius: 4px;
    border: 1px solid rgba(0, 204, 68, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    color: #a0c8a0;
}

.suggestionList {
    margin: 0;
    padding: 0;
}

.suggestionList ul {
    font-size: 12px;
    list-style: none;
    padding: 0;
    margin: 4px;
    text-align: left;
}

.suggestionList li {
    margin: 0;
    padding: 6px 10px;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.suggestionList li:hover {
    background-color: rgba(0, 204, 68, 0.06);
    color: #c0e8c0;
}

div#page_loading {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: transparent url(/src/images/tableload.gif) no-repeat 0 0;
}

/* menu bar — terminal-style top nav */
#menu {
    position: sticky;
    top: 0;
    z-index: 400;
    background: rgba(8, 12, 8, 0.96);
    margin: 0;
    padding: 0;
    min-height: 42px;
    border-bottom: 1px solid rgba(0, 204, 68, 0.08);
}
#menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('code.gif') repeat;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
    pointer-events: none;
    z-index: -1;
}

.nav h2, .nav hr {
    display: none;
}

ul.menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.menu > li {
    position: relative;
}

ul.menu > li > a {
    display: block;
    padding: 14px 20px;
    color: #4a8a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Fira Code', monospace;
    transition: color 0.25s, text-shadow 0.25s;
}

ul.menu > li > a:hover {
    color: #00cc44;
    text-shadow: 0 0 10px rgba(0, 204, 68, 0.25);
}
ul.menu > li > a.active {
    color: #00cc44;
    text-shadow: 0 0 6px rgba(0, 204, 68, 0.15);
}

/* login/logout floated right */
li.menu-right {
    margin-left: auto;
}
li.menu-right ~ li.menu-right {
    margin-left: 0;
}

/* submenus — dropdown panels */
.submenu, .subsubmenu, .subsubsubmenu {
    display: none;
    position: absolute;
    left: 0;
    z-index: 100;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    min-width: 190px;
    background-color: rgba(10, 15, 10, 0.96);
    border: 1px solid rgba(0, 204, 68, 0.15);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

ul.menu > li:hover > .submenu,
ul.menu > li:hover > .submenu-right,
.submenu li:hover > .subsubmenu,
.subsubmenu li:hover > .subsubsubmenu {
    display: block;
}

.submenu-right {
    right: 0;
    left: auto;
}

.menu-divider {
    border-top: 1px solid rgba(0, 204, 68, 0.08);
    margin: 4px 8px;
}

.subsubmenu, .subsubsubmenu {
    position: absolute;
    left: 100%;
    top: 0;
}

.submenu li, .subsubmenu li, .subsubsubmenu li {
    display: block;
    position: relative;
}

.submenu a, .subsubmenu a, .subsubsubmenu a {
    display: block;
    padding: 8px 18px;
    color: #4a8a4a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Fira Code', monospace;
    white-space: nowrap;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 2px;
    margin: 0 4px;
}

.submenu a:hover, .subsubmenu a:hover, .subsubsubmenu a:hover,
.submenu a.active, .subsubmenu a.active, .subsubsubmenu a.active {
    color: #00cc44;
    background-color: rgba(0, 204, 68, 0.04);
}

div#footer {
    width: 100%;
    min-height: 42px;
    line-height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 204, 68, 0.08);
    color: #3a6a3a;
    text-align: center;
    font-size: 11px;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.06em;

    position: relative;
}
div#footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('code.gif') repeat;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
    mask-image: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 0;
}

/* forms — terminal style */
input {
    color: #a0c8a0;
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid rgba(0, 204, 68, 0.12);
    border-radius: 2px;
    padding: 6px 10px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
    border-color: rgba(0, 204, 68, 0.4);
    box-shadow: 0 0 6px rgba(0, 204, 68, 0.08);
    outline: none;
}

textarea {
    color: #a0c8a0;
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid rgba(0, 204, 68, 0.12);
    border-radius: 2px;
    padding: 8px 10px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
textarea:focus {
    border-color: rgba(0, 204, 68, 0.4);
    box-shadow: 0 0 6px rgba(0, 204, 68, 0.08);
    outline: none;
}

select {
    color: #a0c8a0;
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid rgba(0, 204, 68, 0.12);
    border-radius: 2px;
    padding: 6px 10px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
}

.button {
    background-color: rgba(10, 15, 10, 0.6);
    color: #5a9a5a;
    border-radius: 3px;
    border: 1px solid rgba(0, 204, 68, 0.15);
    padding: 8px 18px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: border-color 0.25s, color 0.25s, background-color 0.25s, box-shadow 0.25s;
}

.button:hover {
    border-color: rgba(0, 204, 68, 0.4);
    color: #00cc44;
    background-color: rgba(0, 204, 68, 0.04);
    box-shadow: 0 0 8px rgba(0, 204, 68, 0.06);
}

.button option {
    background-color: #0c120c;
    color: #a0c8a0;
}

.button-close {
    background-color: rgba(10, 15, 10, 0.6);
    color: #5a9a5a;
    border-radius: 3px;
    border: 1px solid rgba(0, 204, 68, 0.1);
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.button-close:hover {
    border-color: rgba(255, 80, 80, 0.4);
    color: #ff5050;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 45px;
    z-index: 100;
    background: rgba(10, 15, 10, 0.98);
    padding: 2px 12px;
    margin: 0 -12px;
    border-bottom: 1px solid rgba(0, 204, 68, 0.1);
    backdrop-filter: blur(8px);
}

div.fileinputs {
    position: relative;
}

div.fakefile {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

input.file {
    position: relative;
    text-align: right;
    opacity: 0;
    z-index: 2;
}

/* map (VO-specific) */
div#map {
    display: none;
    position: absolute;
    right: 0;
    background-color: #000000;
}
div#mapfloat {
    position: relative;
    float: right;
    max-width: 404px;
    width: 100%;
    z-index: 300;
}

/* admin group checkboxes */
.admin-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 4px 0;
}
.admin-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #a0c8a0;
    font-size: 13px;
    cursor: pointer;
}
.admin-checkbox-label input[type="checkbox"] {
    accent-color: #00cc44;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* model editor — panel style */
.model-layout {
    width: 100%;
}
.model-layout > tbody > tr > td:first-child {
    width: 100%;
}
#model-editor-wrapper {
    margin-top: 8px;
}
.model-section {
    background: rgba(8, 12, 8, 0.6);
    border: 1px solid rgba(0, 204, 68, 0.08);
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 8px;
}
.model-section h3 {
    margin: 0 0 6px 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #4a8a4a;
    letter-spacing: 0.1em;
    font-family: 'Fira Code', monospace;
}
.model-field-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.model-field-row label {
    white-space: nowrap;
    min-width: 80px;
    margin: 0;
}
.model-input {
    flex: 1;
    box-sizing: border-box;
}
.model-op-body {
    padding-left: 8px;
}
.model-op-body label {
    display: block;
    margin: 6px 0 2px;
    color: #4a8a4a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
textarea.model-query,
textarea#model-raw-json {
    width: 100%;
    min-height: 80px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: #a0c8a0;
    background: rgba(8, 12, 8, 0.8);
    border: 1px solid rgba(0, 204, 68, 0.1);
    border-radius: 2px;
    padding: 8px;
    resize: vertical;
    box-sizing: border-box;
}
table.model-options td {
    padding: 2px 4px;
}
table.model-options input.opt-key,
table.model-options input.opt-val {
    background: rgba(8, 12, 8, 0.8);
    color: #a0c8a0;
    border: 1px solid rgba(0, 204, 68, 0.1);
    border-radius: 2px;
    padding: 4px 8px;
    font-size: 12px;
}
.model-add-option,
.model-remove-option {
    font-size: 12px;
    padding: 2px 8px;
}

/* CRUD tab bar */
.model-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}
.model-tab {
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-right: 2px;
    font-family: 'Fira Code', monospace;
}
.model-tab.active {
    background: rgba(8, 12, 8, 0.6);
    color: #a0c8a0;
    border-color: rgba(0, 204, 68, 0.15);
    border-bottom: 2px solid #00cc44;
}
.model-tabs + .model-crud-section {
    border-top-left-radius: 0;
}

/* Analytics tab bar */
.analytics-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.analytics-tab {
    border-radius: 4px 4px 0 0;
    border-bottom: 2px solid transparent;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-family: 'Fira Code', monospace;
}
.analytics-tab.active {
    background: rgba(8, 12, 8, 0.6);
    color: #a0c8a0;
    border-bottom: 2px solid #00cc44;
}

.model-view-toggle {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-family: 'Fira Code', monospace;
}
.model-op-actions {
    margin-top: 8px;
}

/* results panel */
.model-results-panel:empty {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}
.model-results-panel pre {
    background: rgba(8, 12, 8, 0.8);
    border: 1px solid rgba(0, 204, 68, 0.08);
    border-radius: 2px;
    color: #a0c8a0;
    font-size: 12px;
    max-height: 400px;
    overflow: auto;
    padding: 8px;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}
.model-results-loading {
    color: #4a8a4a;
    font-style: italic;
    font-size: 12px;
}
.model-results-error {
    color: #cc4444;
    font-size: 12px;
}
.model-results-empty {
    color: #4a8a4a;
    font-size: 12px;
}
.model-preview-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =============================================
   Extension CSS overrides — theme-match colors
   Extensions use hardcoded cyan; override to green
   ============================================= */

/* posts extension */
.post-card { border-color: rgba(0, 204, 68, 0.1) !important; }
.post-card:hover { border-color: rgba(0, 204, 68, 0.2) !important; }
.post-title { color: #00cc44 !important; font-family: 'Fira Code', monospace !important; }
.post-card-pinned .post-title { color: #e0a820 !important; }
.post-meta { color: #4a8a4a !important; }
.post-pinned { color: #00cc44 !important; border-color: rgba(0, 204, 68, 0.3) !important; }
.post-controls a { color: #4a8a4a !important; }
.post-controls a:hover { color: #00cc44 !important; }
.post-body { color: #a0c8a0 !important; }
.post-body a { color: #00cc44 !important; }
.post-form { background: rgba(8, 12, 8, 0.4) !important; border-color: rgba(0, 204, 68, 0.1) !important; }
.post-input { background: rgba(10, 15, 10, 0.8) !important; color: #a0c8a0 !important; border-color: rgba(0, 204, 68, 0.12) !important; font-family: 'Fira Code', monospace !important; }
.post-input:focus { border-color: rgba(0, 204, 68, 0.4) !important; box-shadow: 0 0 6px rgba(0, 204, 68, 0.08) !important; }
.post-textarea { background: rgba(10, 15, 10, 0.8) !important; color: #a0c8a0 !important; border-color: rgba(0, 204, 68, 0.12) !important; }
.post-textarea:focus { border-color: rgba(0, 204, 68, 0.4) !important; box-shadow: 0 0 6px rgba(0, 204, 68, 0.08) !important; }
.post-pin-label { color: #4a8a4a !important; }
.post-empty { color: #3a6a3a !important; }
.post-edit-form input,
.post-edit-form textarea { color: #a0c8a0 !important; background: rgba(10, 15, 10, 0.8) !important; border-color: rgba(0, 204, 68, 0.12) !important; }
.post-edit-form input:focus,
.post-edit-form textarea:focus { border-color: rgba(0, 204, 68, 0.4) !important; box-shadow: 0 0 6px rgba(0, 204, 68, 0.08) !important; }

/* comments extension */
.comment { border-color: rgba(0, 204, 68, 0.08); }
.comment-user { color: #00cc44; }
.comment-date { color: #4a8a4a; }
.comment-delete { color: #4a8a4a; }
.comment-delete:hover { color: #cc4444; }
.comment-form input,
.comment-form textarea { color: #a0c8a0; background: rgba(10, 15, 10, 0.8); border-color: rgba(0, 204, 68, 0.12); }
.comment-form input:focus,
.comment-form textarea:focus { border-color: rgba(0, 204, 68, 0.4); box-shadow: 0 0 6px rgba(0, 204, 68, 0.08); }

/* chat extension */
.anyx-chat-tabs { border-color: rgba(0, 204, 68, 0.1) !important; }
.anyx-chat-group-label { color: #3a6a3a !important; }
.anyx-chat-tab { color: #4a8a4a !important; font-family: 'Fira Code', monospace !important; }
.anyx-chat-tab:hover { color: #a0c8a0 !important; }
.anyx-chat-tab.active { color: #00cc44 !important; border-bottom-color: #00cc44 !important; }
.anyx-chat-tab.unread { color: #a0c8a0 !important; }
.anyx-chat-messages { background: rgba(8, 12, 8, 0.4) !important; }
.anyx-chat-user { color: #00cc44 !important; }
.anyx-chat-time { color: #3a6a3a !important; }
.anyx-chat-input-bar { border-color: rgba(0, 204, 68, 0.1) !important; }
.anyx-chat-input { border-color: rgba(0, 204, 68, 0.1) !important; }
.anyx-chat-input input { color: #a0c8a0 !important; background: rgba(10, 15, 10, 0.8) !important; border-color: rgba(0, 204, 68, 0.12) !important; font-family: 'Fira Code', monospace !important; }
.anyx-chat-input input:focus { border-color: rgba(0, 204, 68, 0.4) !important; box-shadow: 0 0 6px rgba(0, 204, 68, 0.08) !important; }
.anyx-chat-input button { color: #00cc44 !important; background: rgba(10, 15, 10, 0.6) !important; border-color: rgba(0, 204, 68, 0.2) !important; font-family: 'Fira Code', monospace !important; }
.anyx-chat-input button:hover { background: rgba(0, 204, 68, 0.06) !important; border-color: rgba(0, 204, 68, 0.4) !important; color: #33ff66 !important; }
.anyx-chat-manage { color: #4a8a4a !important; }

/* voice extension */
#anyx-voice-toggle > a { color: #3a6a3a !important; }
#anyx-voice-toggle > a:hover { color: #00cc44 !important; }
#anyx-voice-toggle > a.anyx-voice-connected { color: #00cc44 !important; text-shadow: 0 0 8px rgba(0, 204, 68, 0.3) !important; }
#anyx-voice-toggle > a.anyx-voice-connected:hover { color: #33ff66 !important; }
.anyx-voice-participant-mic.anyx-voice-unmuted { color: #00cc44 !important; text-shadow: 0 0 6px rgba(0, 204, 68, 0.3) !important; }
.anyx-voice-speaking .anyx-voice-participant-mic { color: #33ff66 !important; text-shadow: 0 0 8px rgba(0, 204, 68, 0.4) !important; }
.anyx-voice-channel-name { color: #a0c8a0 !important; }
.anyx-voice-channel-join { color: #00cc44 !important; }
.anyx-voice-channel-join:hover { background: rgba(0, 204, 68, 0.06) !important; }
.anyx-voice-channel-leave { color: #cc4444 !important; }
.anyx-voice-participant { color: #a0c8a0 !important; }
.anyx-voice-panel-header { color: #4a8a4a !important; }
.anyx-voice-group-header { color: #4a8a4a !important; }
.anyx-voice-group-label { color: #4a8a4a !important; }
.anyx-voice-manage { color: #3a6a3a !important; }
.anyx-voice-manage:hover { color: #00cc44 !important; }
.anyx-voice-panel .anyx-voice-ch-name.anyx-voice-ch-active { color: #00cc44 !important; text-shadow: 0 0 8px rgba(0, 204, 68, 0.2) !important; }
.submenu .anyx-voice-ch-active { color: #00cc44 !important; text-shadow: 0 0 8px rgba(0, 204, 68, 0.2) !important; }
.anyx-voice-ch-joined { color: #00cc44 !important; font-weight: 500 !important; }
.anyx-voice-panel .anyx-voice-speaking { color: #33ff66 !important; text-shadow: 0 0 6px rgba(0, 204, 68, 0.3) !important; }
.submenu .anyx-voice-speaking { color: #33ff66 !important; text-shadow: 0 0 6px rgba(0, 204, 68, 0.3) !important; }
.anyx-voice-panel-channel:hover { background-color: rgba(0, 204, 68, 0.04) !important; }
.anyx-voice-panel .anyx-voice-panel-header { border-color: rgba(0, 204, 68, 0.1) !important; }
.anyx-voice-group-channels { border-color: rgba(0, 204, 68, 0.08) !important; }
.anyx-voice-channel:hover { background-color: rgba(0, 204, 68, 0.04) !important; }
.submenu .anyx-voice-channel:hover { background-color: rgba(0, 204, 68, 0.04) !important; }

/* admin channel page — bridge info box (override inline styles) */
#admin-channel-group-label { color: #00cc44 !important; }
div[style*="border:1px solid #2a3a4a"] { border-color: rgba(0, 204, 68, 0.12) !important; }
div[style*="border:1px solid #2a3a4a"] strong { color: #00cc44 !important; }
div[style*="border:1px solid #2a3a4a"] a { color: #00cc44 !important; }
div[style*="border:1px solid #2a3a4a"] span { color: #00cc44 !important; }

/* Quill WYSIWYG editor */
.ql-toolbar.ql-snow { background: rgba(10, 15, 10, 0.8) !important; border-color: rgba(0, 204, 68, 0.15) !important; }
.ql-container.ql-snow { background: rgba(10, 15, 10, 0.6) !important; border-color: rgba(0, 204, 68, 0.15) !important; color: #a0c8a0; }
.ql-snow .ql-stroke { stroke: #4a8a4a !important; }
.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill { fill: #4a8a4a !important; }
.ql-snow .ql-picker { color: #4a8a4a !important; }
.ql-snow .ql-picker-options { background-color: #0c120c !important; border-color: rgba(0, 204, 68, 0.2) !important; }
.ql-snow .ql-picker-label:hover, .ql-snow .ql-picker-label.ql-active,
.ql-snow .ql-picker-item:hover, .ql-snow .ql-picker-item.ql-selected,
.ql-snow.ql-toolbar button:hover, .ql-snow.ql-toolbar button.ql-active { color: #00cc44 !important; }
.ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke { stroke: #00cc44 !important; }
.ql-snow.ql-toolbar button:hover .ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-fill { fill: #00cc44 !important; }
.ql-editor.ql-blank::before { color: #3a6a3a !important; }
.ql-snow .ql-editor { color: #a0c8a0; }
.ql-html-editor { background: rgba(10, 15, 10, 0.8) !important; color: #a0c8a0 !important; border-color: rgba(0, 204, 68, 0.15) !important; }
.ql-html-toggle { color: #4a8a4a !important; }
.ql-html-toggle:hover, .ql-html-toggle.ql-active { color: #00cc44 !important; }

/* table extension — override default theme colors */
table.model { border-color: rgba(0, 204, 68, 0.06); }
table.model td, table.model th { border-color: rgba(0, 204, 68, 0.06); }
th.model_sort { color: #4a8a4a; }
th.model_sort:hover { color: #00cc44; }
th.model_sort_current { color: #00cc44; }
td.model_page { color: #4a8a4a; }
td.model_page:hover { color: #00cc44; }
td.model_page_current { color: #00cc44; }
select.model_limit { color: #a0c8a0; background: rgba(10, 15, 10, 0.8); border-color: rgba(0, 204, 68, 0.12); }

/* admin channel management — override inline cyan styles */
#admin-channel-group-label { color: #00cc44 !important; }

/* inline edit forms (admin) */
.inline-edit-form { background: rgba(8, 12, 8, 0.6); border-color: rgba(0, 204, 68, 0.1); }

/* mobile breakpoint */
@media (max-width: 640px) {
    div#page {
        border-left: none;
        border-right: none;
    }
    ul.menu > li > a {
        padding: 10px 12px;
        font-size: 11px;
    }
    .submenu a, .subsubmenu a, .subsubsubmenu a {
        padding: 8px 14px;
    }
    div#mapfloat {
        float: none;
        margin: 0 auto;
    }
    div#data {
        padding: 12px;
    }
}
