.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;

  .modal__content {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
    width: 90%;
    height: fit-content;
    max-width: 40rem;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .modal__image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    width: fit-content;
    height: fit-content;
    max-width: 90%;
    max-height: 90%;
  }

  .modal__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
}
