<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Device Status</title>
    <style>
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #f9f9f9;
      color: #333;
      text-align: center;
    }
    .image {
      width: 150px;
      margin-bottom: 20px;
    }
    .title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .subtitle {
      font-size: 14px;
      color: #888;
      margin-bottom: 30px;
    }
    .info {
      font-size: 14px;
      margin: 10px 0;
    }
    .btn {
      background-color: #007bff;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-size: 14px;
      margin-top: 30px;
    }
    .btn:hover {
      background-color: #0056b3;
    }
  </style>
</head>
<body>
<img class="image" src="/images/device-error.png" alt="Device Error">
<div class="title">Device status is abnormal or under maintenance</div>
<div class="subtitle">Scan on another device</div>
</body>
</html>
