/* Web Push 訂閱彈窗 */
.push-subscribe-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.push-subscribe-modal[hidden] {
    display: none !important;
}

.push-subscribe-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.push-subscribe-dialog {
    position: relative;
    width: min(100%, 360px);
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.push-subscribe-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #888;
    cursor: pointer;
}

.push-subscribe-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.push-subscribe-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.push-subscribe-body {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.push-subscribe-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.push-subscribe-allow {
    width: 100%;
}

.push-subscribe-snooze {
    border: 0;
    background: transparent;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 6px;
}

.push-subscribe-hint {
    margin: 12px 0 0;
    font-size: 12px;
    color: #c0392b;
}

.admin-form-checkboxes,
.admin-form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.admin-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
