/* START: KOL Users Online - Light Mode */
html.light-mode .kol-users-online-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

html.light-mode .kol-online-user {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

html.light-mode .kol-avatar-link {
    display: inline-flex;
    cursor: pointer;
}

html.light-mode .kol-avatar-link img {
    border-radius: 50%;
    vertical-align: middle;
    border: 2px solid #e5e7eb;
}

html.light-mode .kol-user-name {
    font-weight: 500;
    text-decoration: none;
    color: #1f2937;
    cursor: pointer;
}

html.light-mode .kol-user-name:hover {
    text-decoration: underline;
    color: #374151;
}

html.light-mode .kol-nonusers-list {
    margin: 8px 0;
    font-size: 12px;
    color: #6b7280;
}

html.light-mode .kol-online-guest {
    color: #d97706;
    cursor: help;
}

html.light-mode .kol-online-bot {
    color: #8b5cf6;
    cursor: help;
}

html.light-mode .kol-no-users {
    color: #9ca3af;
    font-style: italic;
}

html.light-mode .kol-online-legend {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
    font-size: 11px;
    color: #6b7280;
}

html.light-mode .kol-legend-item {
    margin-right: 10px;
}

html.light-mode .kol-legend-user {
    color: #1f2937;
}

html.light-mode .kol-legend-guest {
    color: #d97706;
}

html.light-mode .kol-legend-bot {
    color: #8b5cf6;
}
/* END: KOL Users Online - Light Mode */

/* START: KOL Users Online - Dark Mode */
html.dark-mode .kol-users-online-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

html.dark-mode .kol-online-user {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

html.dark-mode .kol-avatar-link {
    display: inline-flex;
    cursor: pointer;
}

html.dark-mode .kol-avatar-link img {
    border-radius: 50%;
    vertical-align: middle;
    border: 2px solid #2a2a2a;
}

html.dark-mode .kol-user-name {
    font-weight: 500;
    text-decoration: none;
    color: #e0e0e0;
    cursor: pointer;
}

html.dark-mode .kol-user-name:hover {
    text-decoration: underline;
    color: #f0f0f0;
}

html.dark-mode .kol-nonusers-list {
    margin: 8px 0;
    font-size: 12px;
    color: #9ca3af;
}

html.dark-mode .kol-online-guest {
    color: #fbbf24;
    cursor: help;
}

html.dark-mode .kol-online-bot {
    color: #a78bfa;
    cursor: help;
}

html.dark-mode .kol-no-users {
    color: #6b7280;
    font-style: italic;
}

html.dark-mode .kol-online-legend {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #333;
    font-size: 11px;
    color: #9ca3af;
}

html.dark-mode .kol-legend-item {
    margin-right: 10px;
}

html.dark-mode .kol-legend-user {
    color: #e0e0e0;
}

html.dark-mode .kol-legend-guest {
    color: #fbbf24;
}

html.dark-mode .kol-legend-bot {
    color: #a78bfa;
}
/* END: KOL Users Online - Dark Mode */
