#overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;

  h3 {
    border-bottom: 1px solid var(--darker-25);
    padding-bottom: 5px;
    font-size: 1.25rem;
  }

  #alert-window,
  #confirm-window,
  #loading-window,
  #form-window {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    width: fit-content;
    min-width: 300px;
    max-width: calc(100% - 40px);
    height: fit-content;
    color: var(--zinc-950);
    background-color: var(--zinc-100);
    border-radius: 10px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.25);
    padding: 20px;
    z-index: 1001;

    p {
      text-align: left;
    }

    .button {
      width: 120px;
    }
  }
}
