.ar-button-container {
  text-align: center;
  margin-top: 10px;
}

#ar-button {
  background-color: rgb(238, 238, 238);  
  color: #858585;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.ar-button:hover {
  background-color: #b1b1b1; 
  color: #fff;
}

.ar-icon {
  margin-right: 5px;
  height: 24px;
  width: 24px;
}

.ar-modal {
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  justify-content: center;
  align-items: center;
  z-index: 999; 
}

.ar-modal-content {
  background-color: #fefefe;
  padding: 15px;
  margin: 30vh auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 400px; 
}

.ar-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ar-modal-title {
  font-size: 24px;
  font-weight: bold;
}

.ar-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ar-modal-body p  {
  line-height: 125%; 
  width: 260px;
  margin-bottom: 8px;
}

#qr-code {
  margin: 10px auto;
  width: 200px; 
  height: 200px; 
}

.ar-modal-close-button {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-top: -24px;
  color: #aaa;
}

.ar-modal-close-button:hover,
.ar-modal-close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}