.reviewContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex start;
  width: 60%
}

.reviewSubContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1em;
}

.review {
  width: 45%;
  border-radius: 0.2em;
  border-color: black;
  border-style: solid;
  padding: 0.5em;
  transition: transform 0.2s ease-in-out;
}

.review .reviewHeader {
  display: flex;
  justify-content: space-between;
  border: 0;
  margin: 0;
  padding: 0;
}

.replyIndicator {
  font-size: 1.2em;
  color: green;
}

.review .rating {
  margin-left: 0em;
  color: orange;
}

.review:hover {
  transform: scale(1.04);
  z-index: 2;
}

/* Modal overlay with blur */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Centered modal content */
.modal-content {
  background: white;
  border-radius: 0.7em;
  /* padding: 2em; */
  min-width: 320px;
  max-width: 90vw;
  width: 45vw;
  max-height: 60vh;
  /* overflow-y: auto; */
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.25); */
  position: relative;

}
.reviewDetails {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-style: solid;
  border-radius: 0.5em;
}

.reviewDetails-scrollable {
  max-height: 50vh;
  overflow-y: auto;
  margin-left: 0.5 !important;
  margin: 0.5em !important;
}

.reviewDetails-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewDetails .close-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  margin-right: 1em;
}

.reviewDetails-actions-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1em !important;
  margin-left: 0em !important;
  margin-right: 0em !important;
  margin-bottom: 0em !important;
}

.reviewActions {
  margin-bottom: 1em;
  width: 30%;
  font-size: 1em;
  background-color: pink;
  border-radius: 0.3em;
  transition: transform 0.15s;
}

.reviewActions:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.reviewDetails p {
  border-style: solid;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 0.3em;
  border-width: 0.15em;
  display: block;
  padding: 0.5em;
}

.reviewDetails .existing-response {
  white-space: pre-wrap;
}

.reviewDetails textarea {
  width: 95%;
  min-height: 4em;      /* Minimum height */
  padding: 0.5em;
  /* font-size: 1em; */
  border-radius: 0.3em;
  border-style: solid;
  border-color: black;
  border-width: 0.15em;
  font-size: 1em;
  font-family: inherit; /* Ensures it matches parent, like <p> */
  resize: none;
  overflow: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reviewDetails h2 {
  margin-left: 0.5em;
}

.reviewDetails div {
  margin-left: 1em;
}

.reviewDetails h3 {
  margin-left: 1em;
}

.reviewDetails .rating {
  color: orange;
  margin-left: 1.5em !important;
}

.response-edit-textarea {
  margin-top: 1em;
  margin-bottom: 1em;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.pagination button {
  margin-left: 1em;
  margin-right: 1em;
  border: none;
  background-color: transparent;
}

/*# sourceMappingURL=8fbe8d172b58e50b.css.map*/