.dry-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  background: var(--base-white, #fff);
  border: #fff;
  overflow: auto;
  /* Shadow/xl */
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);

  position: relative;
  max-width: 100vw;

  div:first-child {
    margin: 2px;
  }

  &__button-wrapper {
    position: relative;
    bottom: 10px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
  }

  &__header-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: initial;
    align-items: initial;
    margin-bottom: 20px;
  }
  &__sub-text {
    align-self: stretch;
    color: var(--gray-600, #475467);

    /* Text sm/Regular */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }

  &--light {
    box-shadow: none;
    position: absolute;
    top: 100%; // positions it right under the triggering element
    left: 0;
    z-index: 1010;
    border: 1px solid #ccc;
    background-color: #fff;
    width: max-content !important;
  }

  &--overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-width: 100vw;
  }
  &__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  &__close-button {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  &__title {
    margin-bottom: 20px;
  }

  &__content {
    overflow: auto;
    margin-bottom: 60px;
  }

  &__input,
  &__add-button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  &__add-button {
    cursor: pointer;
    background: #ddd;
    transition: background-color 0.2s linear;
  }

  &__add-button:hover {
    background: #bbb;
  }
}
// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
  .dry-modal {
  }
}
// Adjusting for smaller screens (small tablets and mobile)
@media (max-width: 768px) {
  .dry-modal {
    padding: 24px;
  }
}
// Adjusting  for smaller screens (mobile)
@media (max-width: 480px) {
  .dry-modal {
    padding: 24px;
  }
}
