/* START: Activity Stream Container - Dark */
html.dark-mode .kol-as-container {
    max-width: 680px;
    margin: 0 auto;
}
/* END: Activity Stream Container - Dark */

/* START: Feed Header - Dark */
html.dark-mode .kol-as-feed-header {
    margin-bottom: 12px;
}

html.dark-mode .kol-as-feed-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}

html.dark-mode .kol-as-feed-tabs::-webkit-scrollbar {
    display: none;
}

html.dark-mode .kol-as-tab {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

html.dark-mode .kol-as-tab:hover {
    background: #2a2a2a;
    color: #e0e0e0;
}

html.dark-mode .kol-as-tab-active {
    background: #333333;
    color: #e0e0e0;
}
/* END: Feed Header - Dark */

/* START: Composer - Dark */
html.dark-mode .kol-as-composer-wrap {
    margin-bottom: 12px;
}

html.dark-mode .kol-as-composer-card {
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    padding: 12px;
    position: relative;
}

html.dark-mode .kol-as-composer-header {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

html.dark-mode .kol-as-composer-avatar-link {
    flex-shrink: 0;
}

html.dark-mode .kol-as-composer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

html.dark-mode .kol-as-composer-input-area {
    flex: 1;
    min-width: 0;
}

html.dark-mode .kol-as-composer-input {
    width: 100%;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    background: #222222;
    font-family: inherit;
    resize: vertical;
    max-height: 120px;
    outline: none;
    transition: border-color 0.15s;
}

html.dark-mode .kol-as-composer-input:focus {
    border-color: #3b82f6;
}

html.dark-mode .kol-as-composer-input::placeholder {
    color: #6b7280;
}

html.dark-mode .kol-as-composer-char-count {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    text-align: right;
}

html.dark-mode .kol-as-composer-media-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #333333;
}

html.dark-mode .kol-as-media-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

html.dark-mode .kol-as-media-icon-btn {
    background: transparent;
    border: 1px solid #333333;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
    transition: background 0.15s, border-color 0.15s;
}

html.dark-mode .kol-as-media-icon-btn:hover {
    background: #2a2a2a;
    border-color: #4b5563;
}

html.dark-mode .kol-as-selected-files {
    margin-bottom: 10px;
}

html.dark-mode .kol-as-files-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 6px;
}

html.dark-mode .kol-as-files-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

html.dark-mode .kol-as-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: #222222;
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 13px;
}

html.dark-mode .kol-as-file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

html.dark-mode .kol-as-file-name {
    color: #e0e0e0;
    word-break: break-word;
}

html.dark-mode .kol-as-file-size {
    color: #6b7280;
    font-size: 12px;
}

html.dark-mode .kol-as-file-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 4px;
    flex-shrink: 0;
}

html.dark-mode .kol-as-file-remove:hover {
    color: #dc2626;
}

html.dark-mode .kol-as-upload-limits {
    margin-bottom: 10px;
    padding: 8px;
    background: #1a4d1a;
    border-left: 3px solid #22c55e;
    border-radius: 4px;
}

html.dark-mode .kol-as-limits-label {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    margin-bottom: 4px;
}

html.dark-mode .kol-as-limits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #10b981;
}

html.dark-mode .kol-as-limits-list li {
    padding: 2px 0;
}

html.dark-mode .kol-as-upload-errors {
    margin-bottom: 10px;
    padding: 8px;
    background: #4d1a1a;
    border-left: 3px solid #ef4444;
    border-radius: 4px;
}

html.dark-mode .kol-as-upload-error-item {
    font-size: 12px;
    color: #fca5a5;
    padding: 3px 0;
}

html.dark-mode .kol-as-composer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #333333;
}

html.dark-mode .kol-as-composer-left {
    flex: 1;
}

html.dark-mode .kol-as-composer-media-toggle {
    background: transparent;
    border: 1px solid #333333;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 14px;
    transition: background 0.15s;
}

html.dark-mode .kol-as-composer-media-toggle:hover {
    background: #2a2a2a;
}

html.dark-mode .kol-as-composer-right {
    display: flex;
    gap: 8px;
}

html.dark-mode .kol-as-composer-cancel {
    background: transparent;
    border: 1px solid #333333;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s;
}

html.dark-mode .kol-as-composer-cancel:hover {
    background: #2a2a2a;
}

html.dark-mode .kol-as-composer-post {
    background: linear-gradient(to bottom, #2d7c2d, #1f5f1f);
    border-top: 1px solid #3d9d3d;
    border-left: 1px solid #3d9d3d;
    border-right: 1px solid #1a4d1a;
    border-bottom: 1px solid #1a4d1a;
    height: 32px;
    padding: 0 15px;
    border-radius: 6px;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.15s;
}

html.dark-mode .kol-as-composer-post:hover:not(:disabled) {
    opacity: 0.95;
}

html.dark-mode .kol-as-composer-post:disabled {
    opacity: 0.5;
    cursor: default;
}

html.dark-mode .kol-as-inline-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}

html.dark-mode .kol-as-inline-message-success {
    background: #1a3a1a;
    color: #10b981;
    border-left: 3px solid #22c55e;
}

html.dark-mode .kol-as-inline-message-error {
    background: #3a1a1a;
    color: #fca5a5;
    border-left: 3px solid #ef4444;
}
/* END: Composer - Dark */

/* START: Activity Item Card - Dark */
html.dark-mode .kol-as-activity-item {
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25), 0px 0px 2px rgba(0, 0, 0, 0.2);
    padding: 4px;
    margin-bottom: 12px;
}
/* END: Activity Item Card - Dark */

/* START: Activity Header - Dark */
html.dark-mode .kol-as-activity-header {
    display: flex;
    align-items: center;
    padding: 12px 12px 8px 12px;
}

html.dark-mode .kol-as-avatar-link {
    flex-shrink: 0;
    margin-right: 10px;
}

html.dark-mode .kol-as-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

html.dark-mode .kol-as-activity-meta {
    flex: 1;
    min-width: 0;
}

html.dark-mode .kol-as-user-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.3;
}

html.dark-mode .kol-as-time-ago {
    font-size: 12px;
    color: #6b7280;
}

html.dark-mode .kol-as-activity-actions {
    flex-shrink: 0;
}

html.dark-mode .kol-as-more-btn {
    background: transparent;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 4px;
}

html.dark-mode .kol-as-more-btn:hover {
    background: #2a2a2a;
    color: #9ca3af;
}
/* END: Activity Header - Dark */

/* START: Activity Content - Dark */
html.dark-mode .kol-as-activity-content {
    padding: 0 12px 8px 12px;
}

html.dark-mode .kol-as-activity-action {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

html.dark-mode .kol-as-activity-action a {
    color: #e0e0e0;
    font-weight: 600;
    text-decoration: none;
}

html.dark-mode .kol-as-activity-body {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    word-wrap: break-word;
}

html.dark-mode .kol-as-activity-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 8px;
}
/* END: Activity Content - Dark */

/* START: Engagement Meter - Dark */
html.dark-mode .kol-as-engagement-meter {
    padding: 6px 12px;
}

html.dark-mode .kol-as-meter-bar {
    height: 4px;
    background: #333333;
    border-radius: 2px;
    overflow: hidden;
}

html.dark-mode .kol-as-meter-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.4s ease;
}

html.dark-mode .kol-as-meter-cold {
    background: #6b7280;
}

html.dark-mode .kol-as-meter-warm {
    background: #f59e0b;
}

html.dark-mode .kol-as-meter-hot {
    background: linear-gradient(90deg, #f97316, #ef4444);
}

html.dark-mode .kol-as-meter-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 12px;
}

html.dark-mode .kol-as-meter-label {
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
}

html.dark-mode .kol-as-meter-counts {
    color: #6b7280;
    font-size: 12px;
}

html.dark-mode .kol-as-count-separator {
    margin: 0 4px;
}
/* END: Engagement Meter - Dark */

/* START: Reaction Summary - Dark */
html.dark-mode .kol-as-reaction-summary {
    display: flex;
    gap: 8px;
    padding: 4px 12px;
    flex-wrap: wrap;
}

html.dark-mode .kol-as-reaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    cursor: pointer;
}

html.dark-mode .kol-as-reaction-badge-count {
    font-size: 12px;
    color: #9ca3af;
}
/* END: Reaction Summary - Dark */

/* START: Action Bar - Dark */
html.dark-mode .kol-as-action-bar {
    display: flex;
    border-top: 1px solid #333333;
    padding: 4px 8px;
}

html.dark-mode .kol-as-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

html.dark-mode .kol-as-action-btn:hover {
    background: #2a2a2a;
    color: #e0e0e0;
}

html.dark-mode .kol-as-action-btn.kol-as-reacted {
    font-weight: 600;
}
/* END: Action Bar - Dark */

/* START: Reaction Picker - Dark */
html.dark-mode .kol-as-reaction-trigger-wrap {
    flex: 1;
    position: relative;
}

html.dark-mode .kol-as-reaction-picker {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding: 6px 8px;
    display: flex;
    gap: 2px;
    z-index: 100;
    white-space: nowrap;
}

html.dark-mode .kol-as-reaction-option {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
}

html.dark-mode .kol-as-reaction-option:hover {
    transform: scale(1.25);
    background: #333333;
}
/* END: Reaction Picker - Dark */

/* START: Comments Section - Dark */
html.dark-mode .kol-as-comments-section {
    border-top: 1px solid #333333;
    padding: 8px 12px;
}

html.dark-mode .kol-as-comments-list {
    max-height: 300px;
    overflow-y: auto;
}

html.dark-mode .kol-as-comment-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

html.dark-mode .kol-as-comment-nested {
    margin-left: 40px;
}

html.dark-mode .kol-as-comment-avatar-link {
    flex-shrink: 0;
}

html.dark-mode .kol-as-comment-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

html.dark-mode .kol-as-comment-body {
    flex: 1;
    min-width: 0;
}

html.dark-mode .kol-as-comment-bubble {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 8px 12px;
}

html.dark-mode .kol-as-comment-author {
    font-weight: 600;
    font-size: 13px;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
}

html.dark-mode .kol-as-comment-text {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.4;
    word-wrap: break-word;
}

html.dark-mode .kol-as-comment-meta {
    padding: 2px 12px;
}

html.dark-mode .kol-as-comment-time {
    font-size: 11px;
    color: #6b7280;
}

html.dark-mode .kol-as-comments-more-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
    font-weight: 500;
}

html.dark-mode .kol-as-comments-more-btn:hover {
    color: #e0e0e0;
}
/* END: Comments Section - Dark */

/* START: Comment Form - Dark */
html.dark-mode .kol-as-comment-form {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #333333;
}

html.dark-mode .kol-as-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

html.dark-mode .kol-as-comment-input-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    background: #2a2a2a;
    border-radius: 18px;
    padding: 4px 4px 4px 12px;
}

html.dark-mode .kol-as-comment-input {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    font-size: 13px;
    line-height: 1.4;
    padding: 6px 0;
    max-height: 120px;
    color: #e0e0e0;
    font-family: inherit;
}

html.dark-mode .kol-as-comment-input::placeholder {
    color: #6b7280;
}

html.dark-mode .kol-as-comment-submit {
    background: transparent;
    border: none;
    color: #3b82f6;
    cursor: pointer;
    padding: 6px 8px;
    font-size: 14px;
    border-radius: 50%;
    transition: background 0.15s;
}

html.dark-mode .kol-as-comment-submit:hover:not(:disabled) {
    background: #333333;
}

html.dark-mode .kol-as-comment-submit:disabled {
    color: #4b5563;
    cursor: default;
}
/* END: Comment Form - Dark */

/* START: Loading / Empty - Dark */
html.dark-mode .kol-as-loading {
    text-align: center;
    padding: 20px;
}

html.dark-mode .kol-as-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #333333;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: kol-as-spin 0.6s linear infinite;
    margin: 0 auto;
}

html.dark-mode .kol-as-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

html.dark-mode .kol-as-load-more-wrap {
    text-align: center;
    padding: 12px;
}

html.dark-mode .kol-as-load-more-btn {
    background: linear-gradient(to bottom, #383838, #343434);
    border-top: 1px solid #555555;
    border-left: 1px solid #555555;
    border-right: 1px solid #282828;
    border-bottom: 1px solid #282828;
    height: 32px;
    padding: 0 15px;
    border-radius: 6px;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}
/* END: Loading / Empty - Dark */

/* START: Video Embeds - Dark */
html.dark-mode .kol-as-video-embed,
html.dark-mode .kol-as-youtube-embed {
    margin: 10px 0 0 0;
}

html.dark-mode .kol-as-video-landscape-wrap,
html.dark-mode .kol-as-youtube-video-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

html.dark-mode .kol-as-video-landscape-wrap iframe,
html.dark-mode .kol-as-youtube-video-wrap iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

html.dark-mode .kol-as-video-vertical-wrap,
html.dark-mode .kol-as-youtube-shorts-wrap {
    width: 280px;
    max-width: 100%;
    height: 498px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

html.dark-mode .kol-as-video-vertical-wrap iframe,
html.dark-mode .kol-as-youtube-shorts-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

html.dark-mode .kol-as-video-audio {
    border-radius: 8px;
    overflow: hidden;
}

html.dark-mode .kol-as-video-link {
    padding: 12px;
    background: #2a2a2a;
    border-radius: 8px;
    text-align: center;
}

html.dark-mode .kol-as-video-link a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

html.dark-mode .kol-as-video-link a i {
    margin-right: 6px;
}

html.dark-mode .kol-as-video-vertical-wrap .fluid-width-video-wrapper,
html.dark-mode .kol-as-youtube-shorts-wrap .fluid-width-video-wrapper,
html.dark-mode .kol-as-video-landscape-wrap .fluid-width-video-wrapper,
html.dark-mode .kol-as-youtube-video-wrap .fluid-width-video-wrapper,
html.dark-mode .kol-as-video-audio .fluid-width-video-wrapper {
    padding-top: 0 !important;
    position: static !important;
    width: 100%;
    height: 100%;
}
/* END: Video Embeds - Dark */

/* START: Reactions Row - Dark */
html.dark-mode .kol-as-reactions-row {
    padding: 4px 12px 0 12px;
}

html.dark-mode .kol-as-reactions-icons-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px 0;
}

html.dark-mode .kol-as-reaction-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    margin-right: -4px;
    font-size: 10px;
    color: #ffffff;
}

html.dark-mode .kol-as-reactions-total {
    margin-left: 8px;
    font-size: 13px;
    color: #9ca3af;
}

html.dark-mode .kol-as-reactions-icons-btn:hover .kol-as-reactions-total {
    text-decoration: underline;
}
/* END: Reactions Row - Dark */

/* START: Reactors Popup - Dark */
html.dark-mode .kol-as-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

html.dark-mode .kol-as-popup {
    background: #1a1a1a;
    border-radius: 8px;
    width: 420px;
    max-width: 95vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
}

html.dark-mode .kol-as-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #333333;
}

html.dark-mode .kol-as-popup-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

html.dark-mode .kol-as-popup-tabs::-webkit-scrollbar {
    display: none;
}

html.dark-mode .kol-as-popup-tab {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

html.dark-mode .kol-as-popup-tab:hover {
    background: #2a2a2a;
}

html.dark-mode .kol-as-popup-tab-active {
    background: #333333;
    color: #e0e0e0;
}

html.dark-mode .kol-as-popup-close {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 50%;
}

html.dark-mode .kol-as-popup-close:hover {
    background: #2a2a2a;
}

html.dark-mode .kol-as-popup-body {
    padding: 8px 0;
    overflow-y: auto;
    flex: 1;
}

html.dark-mode .kol-as-popup-reactor {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
}

html.dark-mode .kol-as-popup-reactor:hover {
    background: #222222;
}

html.dark-mode .kol-as-popup-reactor-avatar-link {
    position: relative;
    flex-shrink: 0;
}

html.dark-mode .kol-as-popup-reactor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

html.dark-mode .kol-as-popup-reactor-reaction {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #ffffff;
    border: 2px solid #1a1a1a;
}

html.dark-mode .kol-as-popup-reactor-info {
    flex: 1;
    min-width: 0;
}

html.dark-mode .kol-as-popup-reactor-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.3;
}

html.dark-mode .kol-as-popup-reactor-mutual {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

html.dark-mode .kol-as-add-friend-btn {
    background: linear-gradient(to bottom, #383838, #343434);
    border-top: 1px solid #555555;
    border-left: 1px solid #555555;
    border-right: 1px solid #282828;
    border-bottom: 1px solid #282828;
    height: 32px;
    padding: 0 15px;
    border-radius: 6px;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

html.dark-mode .kol-as-add-friend-btn.kol-as-friend-pending,
html.dark-mode .kol-as-add-friend-btn.kol-as-friend-is {
    opacity: 0.6;
    cursor: default;
}

html.dark-mode .kol-as-popup-loading {
    text-align: center;
    padding: 30px;
}

html.dark-mode .kol-as-popup-empty {
    text-align: center;
    padding: 30px;
    color: #6b7280;
    font-size: 14px;
}

html.dark-mode .kol-as-popup-load-more {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-top: 1px solid #333333;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
}

html.dark-mode .kol-as-popup-load-more:hover {
    background: #2a2a2a;
}
/* END: Reactors Popup - Dark */
