/* =======================================================================
   ZOL — Push notifications widget
   ======================================================================= */

.zol-push-widget {
    margin: 16px 0;
}

.zol-push-row {
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.zol-push-row.zol-push-on {
    border-color: var(--success);
    background: rgba(47, 107, 72, 0.04);
}

.zol-push-title {
    font-weight: 500;
    color: var(--ink);
}
.zol-push-sub {
    font-size: 13px;
    color: rgba(14, 31, 20, 0.6);
    margin-top: 2px;
}
.zol-push-actions {
    display: flex;
    gap: 6px;
}
.zol-push-note {
    background: var(--paper-2);
    color: rgba(14, 31, 20, 0.65);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
}

/* Slot used on the various home views */
.push-slot { /* container marker only */ }
