/**
  * System styles when browser not support
  */

.not-support-body {
  font-family: Arial, sans-serif;
  background-color: #d5d5d5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.not-support-popup {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 350px;
  border-top: 4px solid #007bff;
  position: relative;
}

.not-support-popup h2 {
  margin-top: 10px;
  color: #333;
  font-size: 20px;
}

.not-support-popup p {
  font-size: 14px;
  color: #555;
}

.not-support-list {
  text-align: left;
  margin-top: 10px;
}