/* QR Code Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6);
  direction: ltr;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 30px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h3 {
    font-family: 'Cairo', sans-serif;
    margin-bottom: 15px;
    color: #333;
}

.modal-content p {
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
    color: #666;
}

#qrCodeImg {
    margin-bottom: 20px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.badge {
    width: 135px;
    height: 40px;
}
