.account-push-device {
    margin: 0 0 16px;
    padding: 14px;
    border: 1px solid #cfe0eb;
    border-radius: 11px;
    background: #f7fbfd;
}

.account-push-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.account-push-heading h3 {
    margin: 0 0 4px;
}

.account-push-heading p {
    margin: 0;
    color: #637f92;
    font-size: 13px;
    line-height: 1.45;
}

.account-push-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: #a5b5bf;
    box-shadow: 0 0 0 4px rgba(165, 181, 191, 0.15);
}

.account-push-device[data-state="active"] .account-push-dot {
    background: #0fc28b;
    box-shadow: 0 0 0 4px rgba(15, 194, 139, 0.15);
}

.account-push-device[data-state="working"] .account-push-dot {
    background: #20aaf2;
    box-shadow: 0 0 0 4px rgba(32, 170, 242, 0.15);
}

.account-push-device[data-state="error"] .account-push-dot,
.account-push-device[data-state="denied"] .account-push-dot {
    background: #db4053;
    box-shadow: 0 0 0 4px rgba(219, 64, 83, 0.14);
}

.account-push-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.account-push-actions button {
    min-height: 38px;
    padding: 7px 13px;
    border: 0;
    border-radius: 8px;
    background: #008bd2;
    color: white;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.account-push-actions button.secondary {
    border: 1px solid #bfd6e5;
    background: white;
    color: #37657f;
}

.account-push-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 600px) {
    .account-push-actions {
        display: grid;
    }
}
