/* Flash container layout shared across base templates */
.flash-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 960px;
  z-index: 2147483647;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.flash {
  pointer-events: auto;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #fbd5d5;
  background: #fde8e8;
  color: #9b1c1c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-family: 'Quicksand', sans-serif;
}

.flash-success {
  background: #def7ec;
  color: #03543f;
  border-color: #bcf0da;
}

.flash-info {
  background: #ebf5ff;
  color: #1e429f;
  border-color: #c3ddfd;
}

@media (max-width: 420px) {
  .flash-container {
    top: 8px;
    width: calc(100% - 16px);
  }

  .flash {
    font-size: 14px;
  }
}
