/**
 * Review Popup Modal Styles
 */

#reviewPopupModal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

#reviewPopupModal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#reviewPopupModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#reviewPopupModal .modal-title {
  margin: 0;
  font-size: 1.25rem;
}

#reviewPopupModal .close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

#reviewPopupModal .close:hover,
#reviewPopupModal .close:focus {
  color: black;
  text-decoration: none;
}

#reviewPopupModal .modal-body {
  margin-bottom: 15px;
}

#reviewPopupModal .modal-body p {
  margin-bottom: 10px;
}

#reviewPopupModal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #dee2e6;
  padding-top: 15px;
}
