/* Container styling */
    .qr-wrapper {
      /*width: 448px;
      height: 619px;*/
      margin: 0 auto 40px;
      padding: 16px;
      border : 2px solid #0072bbff;
      background-color: #fff;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
      border-radius: 12px;
      transition: box-shadow 0.3s ease;

    }


   .qr-header {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px;
      color: #0072bbff;
      background-color: #ffffff;
      padding: 10px 20px;
      border-radius: 30px; /* Creates pill-like rounded shape */
      display: inline-block; /* Keeps the shape tight around text */
      text-align: center;

    }

   .qr-code-box {
      position: relative;
      width: 200px;
      height: 200px;
      margin: 0 auto 12px;
    }

    #qrCodeContainer canvas,
    #qrCodeContainer img {
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

  .qr-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 48px;
      height: 48px;
      transform: translate(-50%, -50%);
      border-radius: 8px;
      background-color: #fff;
      padding: 4px;
    }

    .qr-upi-id {
      font-size: 14px;
      margin-bottom: 8px;
      color: #333;
      word-break: break-word;
    }

   .qr-instruction {
      font-size: 13px;
      color: #555;
      margin-bottom: 8px;
    }
    .qr-apps {
          display: flex;
          justify-content: center;
          margin-bottom: 10px;
        }

    .qr-apps img {
          width: 440px;
          height: 60px;
          object-fit: contain; /* Ensures the image scales without distortion */
          border-radius: 8px;   /* Optional: adds slight rounding */
        }
/*New Code */
 
/*End New Code */
    .actions {
      text-align: center;
      margin-top: 20px;
    }

    .actions button {
      padding: 8px 16px;
      font-size: 14px;
      cursor: pointer;
    }
.qr-watermark {
  position: absolute;
  bottom: 100px;
  left: 60%;
  transform: translateX(-50%);
  font-size: 20px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: regular;
  pointer-events: none;
  z-index: 0;
}

/* 🔲 QR Code Container */
#qrCodeContainer {
  border: 3px solid #007BFF; /* Fliparrow blue */
  padding: 10px;
  display: inline-block;
  border-radius: 6px;
  background-color: #ffffff;
  pointer-events: none;
}
/* 📢 Footer Styling */
.qr-footer {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: #333;
  font-weight: 500;
  border-top: 1px dashed #007BFF;
  padding-top: 6px;
}

.btn-outline-fliparrow {
    --bs-btn-color: #232022;
    --bs-btn-border-color: #ef6603;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0c71cb;
    --bs-btn-hover-border-color: #6c757d;
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ef6603;
    --bs-btn-active-border-color: #ef6603;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}
.qr-share-btn {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #ef6603;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.qr-share-btn:hover {
  background-color: #1DA851;
}

 .btn-3d-animated {
      position: relative;
      background: linear-gradient(145deg, #f0c14b, #e6b800);
      border: none;
      box-shadow: 0 4px 0 #b38f00, 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      animation: pulseColor 6s infinite;
    }

    .btn-3d-animated:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 0 #b38f00, 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulseColor {
      0%   { background-color: #f0c14b; }
      25%  { background-color: #feca57; }
      50%  { background-color: #1dd1a1; }
      75%  { background-color: #54a0ff; }
      100% { background-color: #f0c14b; }
    }

    .btn-3d-animated .badge {
      animation: bounce 1.5s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

// <uniquifier>: Use a unique and descriptive class name

.roboto-fliparrow {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Wrapper to hold the container */
.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  position: relative;
}

/* Central container */
.central-container {
  width: 80%;
  max-width: 960px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 2rem;
  position: absolute;
  top: 15%; /* Reduced from 25% */
  transform: translateY(-40%); /* Reduced from -50% */
}
