#content-container {
  width: 100%;
  overflow-x: auto;
}

.flyerDiv {
  width: 100%;
}

.flyer {
  width: 100%;
  line-height: 0;
}

.flyer-image {
  display: block;
  width: 100%;
  min-width: 800px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.flyer-ultrawide {
  height: 600px;
  object-fit: contain;
  object-position: center;
}

#button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap: 12px;
  margin: 24px 0 12px 0;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 10px 18px;
  height: 2rem;
  border-radius: 2rem;
  border: 1px solid #111;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.action-btn a,
.action-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.action-btn:hover {
    opacity: 0.85;
}

.btn-back {
  background-color: #fff;
  color: #111;
  transition: all 0.1s ease-in-out;
}

.btn-back:active {
  background-color: #111;
  color: #fff;
}

.btn-copy {
  background-color: #111;
  color: #fff;
  transition: all 0.1s ease-in-out;
}

.btn-copy:active {
  background-color: #fff;
  color: #111;
}

#copy-status {
  min-width: 84px;
  font-size: 14px;
  color: #333;
}