
    /* Page wrapper */
    body {
      margin: 0;
      font-family: 'Anek Gurmukhi', sans-serif;
      background: #f3f3f3;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Card */
    .code-card {
      background: #ffffff;
      width: 100%;
      max-width: 420px;
      margin: 20px;
      padding: 28px 26px;
      border-radius: 22px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    }

    .code-card h1 {
      margin: 0 0 10px;
      font-size: 26px;
      font-weight: 700;
      color: #000;
    }

    .code-card p {
      margin: 0 0 22px;
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    /* Input */
    .code-input {
      width: 100%;
      height: 54px;
      border-radius: 14px;
      border: 1px solid #d1d5db;
      padding: 0 16px;
      font-size: 16px;
      outline: none;
      box-sizing: border-box;
    }

    .code-input:focus {
      border-color: #001229;
    }

    /* Button */
    .code-btn {
      width: 100%;
      margin-top: 18px;
      height: 52px;
      border: 0;
      border-radius: 14px;
      background: #001229;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }

    .code-btn:active {
      transform: translateY(1px);
    }

    /* Back link */
    .back-home {
      display: block;
      text-align: center;
      margin-top: 18px;
      font-size: 14px;
      text-decoration: none;
      color: #001229;
      opacity: 0.8;
    }
  
    /* =========================
   Search Result Popup (ISOLATED)
   ========================= */
.sr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* higher than header, sidebar, loader */
}

.sr-hidden {
  display: none;
}

.sr-box {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 10px;
  text-align: center;
  min-width: 260px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  font-family: 'Anek Gurmukhi', sans-serif;
}

.sr-box p {
  margin: 0;
  font-size: 16px;
  color: #001229;
}

.sr-box button {
  margin-top: 16px;
  padding: 6px 22px;
  border: 0;
  border-radius: 6px;
  background: #001229;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.sr-box button:hover {
  opacity: 0.9;
}
