/* ---------- Productivity page ---------- */

/* ---------- Secondary nav bar ---------- */

.sub-nav {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.sub-nav-tab {
    padding: 0.5rem 1.6rem;
    border: none;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid #d4d0c8;
}

.sub-nav-tab:last-child {
    border-right: none;
}

.sub-nav-tab:hover {
    background: #f5f3ee;
}

.sub-nav-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.sub-panel.hidden {
    display: none;
}

/* ---------- Dailies subsection ---------- */


.dailies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #db1b1b;
}

.dailies-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.dailies-progress {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    color: #999;
}

.daily-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.daily-input {
    flex: 1;
    padding: 0.5rem 0.7rem;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.daily-input:focus {
    border-color: #db1b1b;
}

.daily-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.dailies-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.daily-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0ddd5;
}

.daily-item:last-child {
    border-bottom: none;
}

.daily-item.done {
    opacity: 0.5;
}

.daily-item .task-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: #fff;
}

.daily-item .task-check:hover {
    border-color: #db1b1b;
}

.daily-item.done .task-check {
    border-color: #1a8a4a;
    background: #1a8a4a;
}

.daily-item .task-check-icon {
    display: none;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
}

.daily-item.done .task-check-icon {
    display: block;
}

.daily-title {
    flex: 1;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.daily-item.done .daily-title {
    text-decoration: line-through;
    color: #999;
}

.daily-delete {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.daily-delete:hover {
    color: #cc2222;
    background: #fdf0f0;
}

/* ---------- Dailies tracking ---------- */

.tracking-section {
    margin-top: 1.5rem;
}

.tracking-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e0ddd5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.tracking-toggle-icon {
    font-size: 0.6rem;
    transition: transform 0.2s;
    display: inline-block;
}

.tracking-heading:not(.collapsed) .tracking-toggle-icon {
    transform: rotate(90deg);
}

.tracking-body.hidden {
    display: none;
}

.tracking-chart-wrap {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    background: #faf9f6;
    border: 1px solid #e8e5dd;
    border-radius: 6px;
    height: 200px;
}

.tracking-daily {
    margin-bottom: 1rem;
}

.tracking-daily-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-streak {
    font-size: 0.7rem;
    font-weight: 600;
    color: #d97706;
}

/* ---------- Tasks header ---------- */

.prod-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #db1b1b;
}

.prod-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.prod-meta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    color: #999;
    display: flex;
    gap: 0.6rem;
}

#today-stats:not(:empty) {
    font-weight: 600;
    color: #666;
}

/* ---------- Task form ---------- */

.task-form {
    margin-bottom: 1.5rem;
}

.task-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.task-input:focus {
    border-color: #db1b1b;
}

.task-input::placeholder {
    color: #bbb;
    font-style: italic;
}

.task-form-options {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

/* ---------- Priority selector ---------- */

.priority-selector {
    display: flex;
    gap: 0;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    overflow: hidden;
}

.priority-btn {
    padding: 0.35rem 0.8rem;
    border: none;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid #d4d0c8;
}

.priority-btn:last-child {
    border-right: none;
}

.priority-btn:hover {
    background: #f5f3ee;
}

.priority-btn.active[data-priority="high"] {
    background: #db1b1b;
    color: #fff;
}

.priority-btn.active[data-priority="medium"] {
    background: #c89020;
    color: #fff;
}

.priority-btn.active[data-priority="low"] {
    background: #6b8a6b;
    color: #fff;
}

/* ---------- Due date input ---------- */

.task-due-input {
    padding: 0.35rem 0.6rem;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    color: #666;
    background: #fff;
    outline: none;
}

.task-due-input:focus {
    border-color: #db1b1b;
}

/* ---------- Submit button ---------- */

.task-submit {
    padding: 0.35rem 1.2rem;
    border: none;
    border-radius: 6px;
    background: #db1b1b;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    margin-left: auto;
}

.task-submit:hover {
    background: #a01010;
}

/* ---------- Filter tabs ---------- */

.filter-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.filter-tab {
    padding: 0.45rem 1.2rem;
    border: none;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid #d4d0c8;
}

.filter-tab:last-child {
    border-right: none;
}

.filter-tab:hover {
    background: #f5f3ee;
}

.filter-tab.active {
    background: #db1b1b;
    color: #fff;
}

/* ---------- Task list ---------- */

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #e0ddd5;
    transition: opacity 0.2s;
}

.task-item:last-child {
    border-bottom: none;
}

.task-item.completed {
    opacity: 0.5;
}

/* ---------- Category groups ---------- */

.task-group {
    margin-bottom: 1.2rem;
}

.task-group-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e0ddd5;
}

.task-group-header:hover {
    color: #db1b1b;
}

.task-group-arrow {
    font-size: 0.6rem;
    color: #999;
    width: 12px;
    text-align: center;
}

.task-group-header:hover .task-group-arrow {
    color: #db1b1b;
}

.task-group-name {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

.task-group-header:hover .task-group-name {
    color: #db1b1b;
}

.task-group-count {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #bbb;
    margin-left: auto;
}

.task-group-body.hidden {
    display: none;
}

/* ---------- Checkbox ---------- */

.task-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: #fff;
}

.task-check:hover {
    border-color: #db1b1b;
}

.task-item.completed .task-check {
    border-color: #1a8a4a;
    background: #1a8a4a;
}

.task-check-icon {
    display: none;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
}

.task-item.completed .task-check-icon {
    display: block;
}

/* ---------- Task body ---------- */

.task-body {
    flex: 1;
    min-width: 0;
}

.task-title {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    word-break: break-word;
}

.task-item.completed .task-title {
    text-decoration: line-through;
    color: #999;
}

.task-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

/* ---------- Priority badge ---------- */

.priority-badge {
    display: inline-block;
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.priority-high {
    background: #f8e0e0;
    color: #a03030;
}

.priority-medium {
    background: #f5ecd5;
    color: #806020;
}

.priority-low {
    background: #e0ece0;
    color: #3a6b3a;
}

/* ---------- Due date ---------- */

.task-due {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    color: #999;
}

.task-due.overdue {
    color: #cc2222;
    font-weight: 600;
}

/* ---------- Delete button ---------- */

.task-delete {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: #ccc;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    margin-top: 2px;
}

.task-delete:hover {
    color: #cc2222;
    background: #fdf0f0;
}

/* ---------- Empty state ---------- */

.empty-state {
    text-align: center;
    color: #777;
    padding: 3rem 0;
    font-size: 1rem;
}

.empty-state a {
    color: #db1b1b;
    text-decoration: none;
    font-weight: 600;
}

.empty-state a:hover {
    text-decoration: underline;
}

/* ---------- Quote toast ---------- */

.quote-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    max-width: 560px;
    width: calc(100% - 3rem);
    padding: 1rem 1.4rem;
    background: #1a1a1a;
    color: #e8e5dd;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.55;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s, transform 0.5s;
    z-index: 1000;
}

.quote-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.quote-char {
    display: block;
    margin-top: 0.4rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---------- Pomodoro subsection ---------- */

.pom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #db1b1b;
}

.pom-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pom-today-count {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    color: #999;
}

.pom-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.pom-mode-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.pom-mode-label.break {
    color: #1a8a4a;
}

.pom-display {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    user-select: none;
}

.pom-display.running {
    color: #db1b1b;
}

.pom-display.break {
    color: #1a8a4a;
}

.pom-display.break.running {
    color: #1a8a4a;
}

.pom-controls {
    display: flex;
    gap: 0.6rem;
}

.pom-btn {
    padding: 0.5rem 1.6rem;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.pom-btn-start {
    background: #db1b1b;
    color: #fff;
}

.pom-btn-start:hover {
    background: #a01010;
}

.pom-btn-start.paused {
    background: #c89020;
}

.pom-btn-start.paused:hover {
    background: #a07818;
}

.pom-btn-reset {
    background: #f5f3ee;
    color: #666;
    border: 1px solid #d4d0c8;
}

.pom-btn-reset:hover {
    background: #e8e5dd;
}

.pom-duration-selector {
    display: flex;
    gap: 0;
    border: 1px solid #d4d0c8;
    border-radius: 6px;
    overflow: hidden;
}

.pom-dur-btn {
    padding: 0.35rem 1rem;
    border: none;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid #d4d0c8;
}

.pom-dur-btn:last-child {
    border-right: none;
}

.pom-dur-btn:hover {
    background: #f5f3ee;
}

.pom-dur-btn.active {
    background: #1a1a1a;
    color: #fff;
}

.pom-break-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pom-break-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    color: #999;
    margin-right: 0.2rem;
}

.pom-break-btn {
    padding: 0.25rem 0.7rem;
    border: 1px solid #d4d0c8;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s;
}

.pom-break-btn:hover {
    background: #f5f3ee;
}

.pom-break-btn.active {
    background: #1a8a4a;
    color: #fff;
    border-color: #1a8a4a;
}

.pom-log-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e0ddd5;
}

/* ---------- Pomodoro heatmap ---------- */

.pom-heatmap-section {
    margin-bottom: 1.5rem;
}

.pom-heatmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e0ddd5;
}

.pom-streak {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #db1b1b;
}

.pom-heatmap-wrap {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pom-heatmap-days {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 18px;
    flex-shrink: 0;
}

.pom-heatmap-days span {
    height: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.55rem;
    color: #999;
    line-height: 12px;
    width: 24px;
    text-align: right;
    padding-right: 4px;
}

.pom-heatmap {
    display: flex;
    gap: 2px;
}

.pom-heatmap-week {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pom-heatmap-month {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.55rem;
    color: #999;
    height: 14px;
    line-height: 14px;
    padding-left: 1px;
}

.pom-heatmap-cell {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #ebedf0;
}

.pom-heatmap-cell[data-level="0"] { background: #ebedf0; }
.pom-heatmap-cell[data-level="1"] { background: #f4c3c3; }
.pom-heatmap-cell[data-level="2"] { background: #e87070; }
.pom-heatmap-cell[data-level="3"] { background: #db1b1b; }
.pom-heatmap-cell[data-level="4"] { background: #8b0000; }

.pom-heatmap-legend {
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.pom-legend-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.55rem;
    color: #999;
    padding: 0 2px;
}

/* ---------- Pomodoro multi mode ---------- */

.pom-mode-selector {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.pom-multi-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    user-select: none;
}

.pom-multi-toggle input {
    accent-color: #db1b1b;
}

.pom-multi-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
}

.pom-pseudo-input {
    padding: 0.3rem 0.6rem;
    border: 1px solid #d4d0c8;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    color: #1a1a1a;
    width: 140px;
    outline: none;
    transition: border-color 0.15s;
}

.pom-pseudo-input:focus {
    border-color: #db1b1b;
}

.pom-pseudo-input.hidden {
    display: none;
}

/* ---------- Pomodoro leaderboard ---------- */

.pom-leaderboard-section {
    margin-top: 1.5rem;
}

.pom-leaderboard-section.hidden {
    display: none;
}

.pom-activity-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.pom-activity-heading .pom-streak {
    margin-left: auto;
}

.pom-activity-body.hidden {
    display: none;
}

.pom-lb-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.pom-lb-heading:not(.collapsed) .tracking-toggle-icon {
    transform: rotate(90deg);
}

.pom-lb-body.hidden {
    display: none;
}

.pom-lb-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0.75rem;
    border: 1px solid #d4d0c8;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.pom-lb-tab {
    padding: 0.3rem 1rem;
    border: none;
    background: #fff;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    border-right: 1px solid #d4d0c8;
}

.pom-lb-tab:last-child { border-right: none; }
.pom-lb-tab:hover { background: #f5f3ee; }
.pom-lb-tab.active { background: #1a1a1a; color: #fff; }

.pom-lb-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pom-lb-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f0ede6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
}

.pom-lb-row:last-child { border-bottom: none; }

.pom-lb-row-self {
    background: #fdf8f0;
    border-radius: 4px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.pom-lb-rank {
    width: 2rem;
    text-align: center;
    font-weight: 700;
    color: #888;
}

.pom-lb-pseudo {
    flex: 1;
    font-weight: 600;
    color: #1a1a1a;
}

.pom-lb-count {
    font-size: 0.75rem;
    color: #999;
}
