.shared-email-dialog-modal {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 35%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 520px;
  max-width: calc(100vw - 2rem);
  max-height: 70%;
  overflow-y: auto;
  border: 0.09rem solid $silver;
  border-radius: 0.5rem;
  background: white;
}

.shared-email-dialog-modal:focus {
  outline: none;
}

.shared-email-dialog {
  &__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }

  &__title {
    margin: 0;
  }

  &__body {
    padding: 2rem;
  }

  &__select {
    margin-bottom: 1rem;
  }

  &__textarea {
    width: 100%;
    min-height: 150px;
  }

  &__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
