/* interactive.css — Quick actions, wow rows, toggles, settings, activity, filters, posts, pagination, and toast */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px
}

.quick-action {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit
}

.quick-action:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.1);
    transform: translateY(-1px)
}

.quick-action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px
}

.quick-action-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text)
}

.quick-action-sub {
    font-size: 10px;
    color: var(--text3);
    margin-top: 1px
}

.wow-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    background: var(--bg3);
    border-radius: 10px;
    padding: 10px 14px
}

.wow-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text2)
}

.wow-value {
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 3px
}

.wow-value svg {
    width: 12px;
    height: 12px
}

.wow-label {
    font-size: 11px;
    color: var(--text3)
}

.toggle {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: var(--bg4);
    cursor: pointer;
    position: relative;
    transition: all .2s;
    flex-shrink: 0
}

.toggle.on {
    background: var(--accent)
}

.toggle::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all .2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15)
}

.toggle.on::after {
    left: 20px
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg3)
}

.settings-row:last-child {
    border-bottom: none
}

.settings-label {
    font-size: 13px;
    font-weight: 600
}

.settings-desc {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px
}

.activity-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg3);
    align-items: flex-start
}

.activity-item:last-child {
    border-bottom: none
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0
}

.activity-text {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.5
}

.activity-time {
    font-size: 10px;
    color: var(--text3);
    margin-top: 2px
}

.filter-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.fc {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text2);
    font-family: inherit
}

.fc:hover,
.fc.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg)
}

.post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg3)
}

.post-item:last-child {
    border-bottom: none
}

.post-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 4px
}

.post-meta {
    font-size: 11px;
    color: var(--text3)
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--bg3)
}

.pg-info {
    font-size: 12px;
    color: var(--text3)
}

.pg-btns {
    display: flex;
    gap: 4px
}

.pg-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    font-family: inherit;
    transition: all .12s
}

.pg-btn:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.pg-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.last-updated {
    text-align: right;
    font-size: 11px;
    color: var(--text3);
    margin-top: 10px;
    padding-right: 4px
}

.export-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: none;
    z-index: 300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
}

.export-toast.show {
    display: block
}

.coming-soon-badge {
    position: absolute; top: 16px; right: 16px; z-index: 5;
    padding: 6px 14px; background: var(--accent-bg); border: 1px solid var(--accent);
    border-radius: 8px; font-size: 11px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.5px;
    pointer-events: none;
}
