/* Styles for the "Add to Home screen" PWA banner in index.html.
   Extracted from an inline <style> block / style="" attributes so the page
   complies with a strict CSP style-src that does not allow 'unsafe-inline'. */
.add-button-container {
  position: fixed;
  width: 100%;
  padding: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  z-index: 9999999999;
  border: none;
  outline: none;
  font-size: 13px;
  display: none;
}
.add-button {
  text-decoration: underline;
  margin-left: 8px;
}
.add-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hide-button {
  font-size: 18px;
}
