.share-modal {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -10%);
  z-index: 1050;
  background: white;
  border-radius: 10px;
  width: 360px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.share-modal .modal-content {
  position: relative;
}

.close-button {
  position: absolute;
  right: 0px;

  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.social-list a {
  font-size: 1.4rem;
  color: #1e5fb3;
  text-decoration: none;
}

.copy-section input {
  width: 100%;
}

.report-modal {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -10%);
  background: white;
  border-radius: 12px;
  width: 340px;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.report-modal .modal-content {
  position: relative;
}

.report-modal .close-btn {
  position: absolute;
  right: 0px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

textarea.form-control {
  resize: none;
  background: #eee;
  border-radius: 8px;
}

