/**
 * Roadmap and Requests - Frontend Styles
 */
.rrwp-app {
	--rrwp-primary: #5b6cff;
	--rrwp-primary-text: #ffffff;
	--rrwp-accent: #22c55e;
	--rrwp-bg: #ffffff;
	--rrwp-bg-soft: #f7f8fb;
	--rrwp-border: #e5e7eb;
	--rrwp-text: #111827;
	--rrwp-text-muted: #6b7280;
	--rrwp-radius: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	color: var(--rrwp-text);
	max-width: 1180px;
	margin: 50px auto;
	box-sizing: border-box;
}
.rrwp-app *, .rrwp-app *::before, .rrwp-app *::after { box-sizing: border-box; }

@media (max-width: 800px) {
    body .rrwp-app { padding: 0px 10px; }
}

@media (prefers-color-scheme: dark) {
	.rrwp-app.rrwp-dark-auto {
		--rrwp-bg: #0f172a;
		--rrwp-bg-soft: #1e293b;
		--rrwp-border: #334155;
		--rrwp-text: #f1f5f9;
		--rrwp-text-muted: #94a3b8;
	}
}

.rrwp-app-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.rrwp-app-title { margin: 0; font-size: 22px; font-weight: 700; }
.rrwp-title-with-badge { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.rrwp-project-badge { display: inline-flex; align-items: center; max-width: 100%; padding: 3px 9px; border: 1px solid var(--rrwp-border); border-radius: 999px; background: var(--rrwp-bg-soft); color: var(--rrwp-primary); font-size: 12px; line-height: 1.3; font-weight: 700; overflow-wrap: anywhere; }
.rrwp-app-subtitle { margin: 20px 0 22px 0; color: var(--rrwp-text-muted); }
.rrwp-app-header-actions { display: flex; align-items: center; gap: 12px; }
.rrwp-nav-link { font-size: 14px; font-weight: 500; color: var(--rrwp-primary); text-decoration: none; white-space: nowrap; }
.rrwp-nav-link:hover { text-decoration: underline; }

.rrwp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	border: 1px solid var(--rrwp-border); background: var(--rrwp-bg);
	padding: 9px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
	cursor: pointer; text-decoration: none; color: var(--rrwp-text);
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.rrwp-btn:hover { background: var(--rrwp-bg-soft); }
.rrwp-btn-primary { background: var(--rrwp-primary); color: var(--rrwp-primary-text); border-color: var(--rrwp-primary); }
.rrwp-btn-primary:hover { background: var(--rrwp-primary); border-color: var(--rrwp-primary); color: var(--rrwp-primary-text); opacity: 0.9; }
.rrwp-btn-secondary { background: var(--rrwp-bg-soft); }
.rrwp-btn:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.rrwp-btn:active { transform: translateY(1px); }

/* Boards index grid */
.rrwp-boards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.rrwp-board-card {
	display: block; padding: 18px; background: var(--rrwp-bg);
	border: 1px solid var(--rrwp-border); border-radius: var(--rrwp-radius);
	text-decoration: none; color: inherit; transition: border-color 0.15s ease, transform 0.15s ease;
}
.rrwp-board-card:hover { border-color: var(--rrwp-primary); transform: translateY(-2px); }
.rrwp-board-card-icon { font-size: 28px; margin-bottom: 6px; }
.rrwp-board-card-title { margin: 0 0 4px; font-size: 16px; }
.rrwp-board-card-desc { margin: 0 0 10px; color: var(--rrwp-text-muted); font-size: 13px; }
.rrwp-board-card-count { color: var(--rrwp-text-muted); font-size: 12px; }

/* Board layout */
.rrwp-board-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
@media (max-width: 800px) { .rrwp-board-layout { grid-template-columns: 1fr; } }
.rrwp-board-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rrwp-search input { width: 100%; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--rrwp-border); background: var(--rrwp-bg); }
.rrwp-filter-group h4 { margin: 0 0 6px; font-size: 11px; letter-spacing: 0.6px; color: var(--rrwp-text-muted); text-transform: uppercase; }
.rrwp-filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.rrwp-filter-list a { display: flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 6px; text-decoration: none; color: var(--rrwp-text); font-size: 13px; }
.rrwp-filter-list a:hover { background: var(--rrwp-bg-soft); }
.rrwp-filter-list a.is-active { background: var(--rrwp-primary); color: var(--rrwp-primary-text); }
.rrwp-filter-list a.is-active .rrwp-dot { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6); }
.rrwp-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.rrwp-board-switcher select { padding: 6px 10px; border-radius: 8px; border: 1px solid var(--rrwp-border); background: var(--rrwp-bg); }

/* Card list */
.rrwp-card-list { display: flex; flex-direction: column; gap: 10px; }
.rrwp-card {
	display: flex; gap: 14px; padding: 14px; background: var(--rrwp-bg);
	border: 1px solid var(--rrwp-border); border-radius: var(--rrwp-radius);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	max-width: 100%; min-width: 0;
}
.rrwp-card:hover { border-color: var(--rrwp-primary); box-shadow: 0 4px 12px rgba(91, 108, 255, 0.08); }
.rrwp-vote-btn {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
	min-width: 56px; padding: 8px 6px;
	border: 1px solid var(--rrwp-border); border-radius: 8px;
	background: var(--rrwp-bg); color: var(--rrwp-text); cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	padding: 4px;
}
.rrwp-vote-btn:hover { border-color: var(--rrwp-primary); color: var(--rrwp-primary); }
.rrwp-vote-btn.rrwp-voted { background: var(--rrwp-primary); color: var(--rrwp-primary-text); border-color: var(--rrwp-primary); }
.rrwp-vote-btn:disabled { cursor: not-allowed; opacity: 0.55; }
.rrwp-vote-btn:disabled:hover { border-color: var(--rrwp-border); color: var(--rrwp-text); }
.rrwp-vote-count { font-weight: 700; font-size: 14px; }
.rrwp-vote-widget { position: relative; display: flex; flex-direction: column; align-items: stretch; min-width: 56px; }
.rrwp-vote-guest-form[hidden] { display: none; }
.rrwp-vote-guest-form {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
	width: 220px; padding: 12px; background: var(--rrwp-bg); border: 1px solid var(--rrwp-border);
	border-radius: var(--rrwp-radius); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}
.rrwp-vote-guest-form .rrwp-btn { width: 100%; justify-content: center; }
.rrwp-card-body { flex: 1; min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
.rrwp-card-title { font-size: 18px; margin: 0 0 4px; overflow-wrap: anywhere; word-break: break-word; }
.rrwp-card-title a { color: inherit; text-decoration: none; overflow-wrap: anywhere; word-break: break-word; }
.rrwp-card-title a:hover { color: var(--rrwp-primary); }
.rrwp-card-excerpt { color: var(--rrwp-text-muted); margin: 0 0 8px; font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; word-break: break-word; }
.rrwp-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 12px; color: var(--rrwp-text-muted); min-width: 0; overflow-wrap: anywhere; }
.rrwp-card-meta > * { max-width: 100%; min-width: 0; }
.rrwp-meta-author { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 5px; overflow-wrap: anywhere; word-break: break-word; }
.rrwp-meta-author .rrwp-avatar { border-radius: 50%; }
.rrwp-meta-comments { display: inline-flex; align-items: center; gap: 4px; }
.rrwp-status-badge { display: inline-block; max-width: 100%; font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 600; letter-spacing: 0.2px; overflow-wrap: anywhere; word-break: break-word; }
.rrwp-empty { background: var(--rrwp-bg-soft); border: 1px dashed var(--rrwp-border); border-radius: var(--rrwp-radius); padding: 32px; text-align: center; color: var(--rrwp-text-muted); }

/* Pagination */
.rrwp-pagination { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 16px; justify-content: center; }
.rrwp-pagination .page-numbers { padding: 6px 10px; border-radius: 6px; border: 1px solid var(--rrwp-border); background: var(--rrwp-bg); text-decoration: none; color: var(--rrwp-text); }
.rrwp-pagination .page-numbers.current { background: var(--rrwp-primary); color: var(--rrwp-primary-text); border-color: var(--rrwp-primary); }

/* Modal */
.rrwp-modal[hidden] { display: none; }
.rrwp-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.rrwp-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); }
.rrwp-modal-dialog { position: relative; background: var(--rrwp-bg); border-radius: 12px; max-width: 540px; width: 100%; padding: 22px 24px; box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25); max-height: 92vh; overflow: auto; }
.rrwp-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.rrwp-modal-header h3 { margin: 0; font-size: 18px; }
.rrwp-modal-close { background: transparent; border: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--rrwp-text-muted); }
.rrwp-form .rrwp-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.rrwp-form label { display: block; margin-bottom: 12px; }
.rrwp-form input[type=text], .rrwp-form input[type=email], .rrwp-form select, .rrwp-form textarea {
	width: 100%; padding: 9px 11px; border-radius: 8px; border: 1px solid var(--rrwp-border);
	background: var(--rrwp-bg); color: var(--rrwp-text); font-size: 14px; font-family: inherit;
}
.rrwp-submit-project { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-items: center; margin: -2px 0 14px; padding: 10px 12px; border: 1px solid var(--rrwp-border); border-radius: 8px; background: var(--rrwp-bg-soft); font-size: 13px; }
.rrwp-submit-project-label { color: var(--rrwp-text-muted); font-weight: 600; }
.rrwp-submit-project-current { display: flex; align-items: center; min-width: 0; gap: 8px; }
.rrwp-submit-project-current[hidden], .rrwp-submit-project-picker[hidden] { display: none; }
.rrwp-submit-project-name { min-width: 0; overflow-wrap: anywhere; }
.rrwp-submit-project-change { border: 0; background: transparent; color: var(--rrwp-primary); cursor: pointer; font: inherit; font-weight: 600; padding: 0; }
.rrwp-submit-project-picker { grid-column: 1 / -1; margin: 2px 0 0; }
.rrwp-identity-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 640px) { .rrwp-identity-fields { grid-template-columns: 1fr; } }
.rrwp-subscribe-checkbox-label, .rrwp-terms-checkbox-label { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--rrwp-text-muted); cursor: pointer; margin-top: 4px; }
.rrwp-subscribe-checkbox-label input[type=checkbox], .rrwp-terms-checkbox-label input[type=checkbox] { margin: 0; cursor: pointer; }
.rrwp-form-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 8px; }
.rrwp-form-message { margin-top: 10px; font-size: 13px; }
.rrwp-form-message.is-error { color: #b91c1c; }
.rrwp-form-message.is-success { color: #15803d; }
.rrwp-closed-notice { margin-top: 16px; color: var(--rrwp-text-muted); font-size: 14px; }
.rrwp-similar { margin-top: -6px; margin-bottom: 12px; padding: 10px 12px; background: var(--rrwp-bg-soft); border: 1px solid var(--rrwp-border); border-radius: 8px; }
.rrwp-similar h5 { margin: 0 0 6px; font-size: 12px; color: var(--rrwp-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.rrwp-similar ul { padding: 0; margin: 0; list-style: none; }
.rrwp-similar li { padding: 4px 0; }
.rrwp-similar a { color: var(--rrwp-primary); text-decoration: none; }

/* Single request page */
.rrwp-single { display: grid; grid-template-columns: 80px 1fr 280px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .rrwp-single { grid-template-columns: 1fr; } .rrwp-single-aside { order: 3; } }
.rrwp-single-vote { position: sticky; top: 20px; }
.rrwp-single-vote .rrwp-vote-btn { width: 100%; padding: 14px 8px; }
.rrwp-single-content h1 { margin: 0 0 8px; font-size: 26px; }
.rrwp-single-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; color: var(--rrwp-text-muted); font-size: 13px; margin-bottom: 16px; }
.rrwp-single-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.rrwp-single-meta > span + span::before { content: "·"; opacity: 0.4; margin-right: 0; }
.rrwp-single-status-meta { flex-wrap: wrap; min-width: 0; }
.rrwp-single-meta .rrwp-avatar { border-radius: 50%; flex-shrink: 0; width: 20px; height: 20px; vertical-align: middle; }
.rrwp-single-body { font-size: 15px; line-height: 1.65; }
.rrwp-single-body img { max-width: 100%; height: auto; }
.rrwp-single-aside { display: flex; flex-direction: column; gap: 14px; }
.rrwp-aside-card { background: var(--rrwp-bg); border: 1px solid var(--rrwp-border); border-radius: var(--rrwp-radius); padding: 14px; }
.rrwp-aside-card h4 { margin: 0 0 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--rrwp-text-muted); }
.rrwp-subscribe-widget { display: flex; flex-direction: column; gap: 10px; }
.rrwp-subscribe-status { font-size: 13px; font-weight: 600; color: #15803d; }
.rrwp-subscribe-status[hidden], .rrwp-unsubscribe-btn[hidden], .rrwp-subscribe-btn[hidden] { display: none; }
.rrwp-subscribe-message:empty { display: none; }
.rrwp-unsubscribe-btn { background: var(--rrwp-bg-soft); color: var(--rrwp-text); border: 1px solid var(--rrwp-border); }
.rrwp-unsubscribe-btn:hover { border-color: #b91c1c; color: #b91c1c; }
.rrwp-subscribe-form[hidden] { display: none; }
.rrwp-subscribe-form { padding-top: 2px; }
.rrwp-subscribe-form .rrwp-btn { width: 100%; justify-content: center; }
.rrwp-voters-list { display: flex; flex-wrap: wrap; gap: 4px; }
.rrwp-voters-list .rrwp-avatar { border-radius: 50%; }
.rrwp-admin-actions-card { border-color: rgba(91,108,255,0.35); }
.rrwp-admin-action-form { display: flex; flex-direction: column; gap: 10px; margin: 0 0 10px; }
.rrwp-admin-action-form select { width: 100%; min-height: 36px; border: 1px solid var(--rrwp-border); border-radius: 8px; background: var(--rrwp-bg); color: var(--rrwp-text); padding: 6px 8px; }
.rrwp-admin-action-buttons { display: flex; flex-direction: column; gap: 8px; }
.rrwp-admin-action-buttons .rrwp-btn,
.rrwp-admin-delete-form .rrwp-btn,
.rrwp-admin-action-form .rrwp-btn { width: 100%; justify-content: center; }
.rrwp-admin-delete-form { margin: 0; }
.rrwp-btn-danger { background: #b91c1c; border-color: #b91c1c; color: #fff; }
.rrwp-btn-danger:hover { background: #991b1b; border-color: #991b1b; color: #fff; }
.rrwp-admin-action-message { border-radius: 8px; padding: 8px 10px; font-size: 13px; margin-bottom: 10px; }
.rrwp-admin-action-message.is-success { background: #dcfce7; color: #166534; }
.rrwp-admin-action-message.is-error { background: #fee2e2; color: #991b1b; }

/* Comments */
.rrwp-comments { margin-top: 32px; }
.rrwp-comments h3 { font-size: 18px; margin: 0 0 16px; }
.rrwp-comment { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--rrwp-border); }
.rrwp-comment:first-child { border-top: none; }
.rrwp-comment .rrwp-avatar { border-radius: 50%; flex-shrink: 0; align-self: flex-start; width: 36px; height: 36px; }
.rrwp-comment-body { flex: 1; min-width: 0; }
.rrwp-comment-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--rrwp-text-muted); margin-bottom: 4px; }
.rrwp-comment-author { font-weight: 600; color: var(--rrwp-text); }
.rrwp-comment-reply { margin-left: auto; border: 0; background: transparent; color: var(--rrwp-primary); font: inherit; font-weight: 600; padding: 0; cursor: pointer; opacity: 0; transition: opacity .16s ease; }
.rrwp-comment:hover > .rrwp-comment-body > .rrwp-comment-meta .rrwp-comment-reply,
.rrwp-comment:focus-within > .rrwp-comment-body > .rrwp-comment-meta .rrwp-comment-reply,
.rrwp-comment-reply:focus-visible { opacity: 1; }
.rrwp-comment-replies { margin-top: 10px; margin-left: -18px; padding-left: 18px; border-left: 2px solid var(--rrwp-border); }
.rrwp-comment-replies .rrwp-comment { border-top: 1px solid var(--rrwp-border); }
.rrwp-comment-content { font-size: 14px; line-height: 1.55; }
.rrwp-comment-content p { margin: 0 0 8px; }
.rrwp-comment-form { margin-top: 16px; }
.rrwp-comment-form textarea { width: 100%; min-height: 90px; padding: 10px; border-radius: 8px; border: 1px solid var(--rrwp-border); background: var(--rrwp-bg); color: var(--rrwp-text); font-family: inherit; }
.rrwp-replying-to { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--rrwp-bg-soft); border: 1px solid var(--rrwp-border); border-radius: 8px; padding: 8px 10px; margin-bottom: 10px; font-size: 13px; color: var(--rrwp-text-muted); }
.rrwp-replying-to[hidden] { display: none; }
.rrwp-replying-to strong { color: var(--rrwp-text); }
.rrwp-cancel-reply { border: 0; background: transparent; color: var(--rrwp-primary); font: inherit; font-weight: 600; padding: 0; cursor: pointer; }
@media (hover: none) { .rrwp-comment-reply { opacity: 1; } }

/* Roadmap kanban */
.rrwp-roadmap { max-height: 80vh; display: flex; flex-direction: column; min-height: 0; }
.rrwp-roadmap .rrwp-app-header { flex: 0 0 auto; }
.rrwp-roadmap-tabs { display: none; }
.rrwp-kanban { display: flex; flex: 1 1 auto; flex-direction: row; align-items: stretch; gap: 16px; overflow-x: auto; overflow-y: hidden; padding-bottom: 8px; min-height: 0; max-height: 90vh; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.rrwp-kanban::-webkit-scrollbar { height: 6px; }
.rrwp-kanban::-webkit-scrollbar-track { background: var(--rrwp-bg-soft); border-radius: 3px; }
.rrwp-kanban::-webkit-scrollbar-thumb { background: var(--rrwp-border); border-radius: 3px; }
.rrwp-kanban-col { background: var(--rrwp-bg-soft); border: 1px solid var(--rrwp-border); border-radius: var(--rrwp-radius); display: flex; flex-direction: column; overflow: hidden; flex: 0 0 360px; min-width: 320px; max-width: 440px; max-height: 100%; min-height: 0; }
.rrwp-kanban-col-head { padding: 12px 14px; border-top: 4px solid var(--rrwp-primary); background: var(--rrwp-bg); display: flex; justify-content: space-between; align-items: center; }
.rrwp-kanban-col-head h3 { margin: 0; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.rrwp-kanban-count { font-size: 12px; color: var(--rrwp-text-muted); background: var(--rrwp-bg-soft); padding: 2px 8px; border-radius: 999px; }
.rrwp-kanban-col-body { padding: 12px; display: flex; flex: 1 1 auto; flex-direction: column; gap: 10px; min-height: 80px; overflow-x: hidden; overflow-y: auto; scrollbar-width: thin; }
.rrwp-kanban-col-body::-webkit-scrollbar { width: 6px; }
.rrwp-kanban-col-body::-webkit-scrollbar-track { background: var(--rrwp-bg-soft); border-radius: 3px; }
.rrwp-kanban-col-body::-webkit-scrollbar-thumb { background: var(--rrwp-border); border-radius: 3px; }
.rrwp-roadmap-list-layout { max-height: none; }
.rrwp-kanban.rrwp-kanban-list { flex-direction: column; overflow: visible; max-height: none; }
.rrwp-kanban.rrwp-kanban-list .rrwp-kanban-col { flex: 0 0 auto; min-width: 0; max-width: none; max-height: none; width: 100%; }
.rrwp-kanban.rrwp-kanban-list .rrwp-kanban-col-body { overflow: visible; }
@media (max-width: 700px) {
	.rrwp-roadmap { max-height: none; }
	.rrwp-roadmap-tabs { display: flex; flex: 0 0 auto; gap: 8px; overflow-x: auto; padding: 0 0 10px; margin: -4px 0 12px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
	.rrwp-roadmap-tabs::-webkit-scrollbar { height: 6px; }
	.rrwp-roadmap-tabs::-webkit-scrollbar-track { background: var(--rrwp-bg-soft); border-radius: 3px; }
	.rrwp-roadmap-tabs::-webkit-scrollbar-thumb { background: var(--rrwp-border); border-radius: 3px; }
	.rrwp-roadmap-tab { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; max-width: 72vw; border: 1px solid var(--rrwp-border); border-radius: 999px; background: var(--rrwp-bg); color: var(--rrwp-text); padding: 7px 10px; font: inherit; font-size: 11px; font-weight: 600; cursor: pointer; }
	.rrwp-roadmap-tab:hover,
	.rrwp-roadmap-tab:focus-visible,
	.rrwp-roadmap-tab[aria-current="true"] { border-color: var(--rrwp-primary); color: var(--rrwp-primary); }
	.rrwp-roadmap-tab-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.rrwp-roadmap-tab-count { color: var(--rrwp-text-muted); font-weight: 600; }
	.rrwp-kanban { flex: 0 0 auto; max-height: none; overflow-y: visible; }
	.rrwp-kanban-col { flex: 0 0 85vw; max-height: none; }
	.rrwp-kanban-col-body { flex: 0 0 auto; overflow-y: visible; }
}
.rrwp-kanban-empty { color: var(--rrwp-text-muted); font-size: 13px; text-align: center; margin: 14px 0; }

/* Avatar placeholder */
.rrwp-avatar-placeholder { display: inline-block; background: var(--rrwp-bg-soft); border-radius: 50%; }
