.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 10001;
  border-radius: 0.375rem;
  background: #fff;
  padding: 0.5rem 1rem;
  color: #000;
}

.noscript-message {
  padding: 1rem;
  font-family: Barlow, sans-serif;
}

.update-toast-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  margin: 0 auto;
  background-color: #9b1a1a;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
  padding: 16px;
  color: #fff;
  font-family: Barlow, sans-serif;
  pointer-events: auto;
}

.update-toast-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.update-toast-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(255 255 255 / 20%);
  border-radius: 9999px;
}

.update-toast-icon svg {
  width: 20px;
  height: 20px;
}

.update-toast-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.update-toast-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.update-toast-text p {
  color: rgb(255 255 255 / 90%);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.update-toast-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  height: 36px;
  border-radius: 0.25rem;
  padding: 0 12px;
  background: white;
  color: #9b1a1a;
  border: 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}

.update-toast-button:hover {
  background: #f3f4f6;
}
