/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f2f2f2;
  color: #000;
  line-height: 1.5;
}

/* ================= HEADER ================= */
.qrc-header {
  background: #00049e;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qrc-app-logo-container {
  display: flex;
  align-items: center;
}

.qrc-app-logo img {
  width: 60px;
  margin-right: 15px;
}

.qrc-app-logo-text {
  font-size: 20px;
  font-weight: bold;
}

.qrc-app-logo-desc {
  font-size: 13px;
  margin-top: 3px;
}

.qrc-bv-logo img {
  height: 60px;
}

/* ================= CONTENT ================= */
.qrc-content {
  margin: 20px auto;
  max-width: 800px;
  background: transparent;
}

.qrc-bg-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* White content box */
.qrc-code-reader {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.qrc-code-reader-header {
  position: relative;
}

.qrc-code-reader-header .state-background {
  width: 100%;
  display: block;
}

.qrc-code-reader-header .state-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
}

.qrc-code-reader-content {
  padding: 20px;
  font-size: 14px;
}

.qrc-code-reader-content div {
  display: grid;
  grid-template-columns: 200px auto;
  margin-bottom: 8px;
}

.qrc-code-reader-content div strong {
  font-weight: bold;
  font-size: 13px;
}

.qrc-code-reader-disclaimer {
  margin-top: 15px;
  font-size: 12px;
  font-style: italic;
}

/* Footer image */
.qrc-code-reader-footer img {
  width: 100%;
  display: block;
}

/* ================= FOOTER ================= */
.qrc-footer {
  margin-top: 15px;
  padding: 10px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.qrc-bv-footer-links {
  list-style: none;
}

.qrc-bv-footer-links li a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.qrc-bv-footer-links li a b {
  margin-left: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .qrc-code-reader-content div {
    grid-template-columns: 1fr;
  }
  .qrc-app-logo-text {
    font-size: 16px;
  }
  .qrc-app-logo-desc {
    font-size: 11px;
  }
  .qrc-app-logo img {
    width: 45px;
  }
  .qrc-bv-logo img {
    height: 45px;
  }
}
