* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

.title {
  height: 80px;
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
}

.camera-view {
  width: 100%;
  height: 70vh;
  position: relative;
}

.result-view {
  width: 100%;
  height: calc(30vh - 80px);
  padding: 10px;
  overflow: auto;
}

.result-item {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.dm-camera-mn-toast {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
}

.fallback-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: rgb(254, 142, 20);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}