
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  overflow-y: auto;
  padding: 1rem;
}

.modal-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 42rem;
  width: 100%;
  margin: 2rem 0;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.modal-close-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #4b5563;
}

.modal-body p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #FF1493;
}

.rating-group {
  display: flex;
  gap: 0.5rem;
}

.rating-btn {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid #d1d5db;
  transition: all 0.2s ease-in-out;
  background-color: white;
  cursor: pointer;
}

.rating-btn.selected {
  border-color: #FF1493;
  background-color: #fff0f9;
  color: #c00060;
  font-weight: 600;
}

.rating-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
  padding: 0 0.25rem;
}

.rating-labels span {
  font-size: 0.75rem;
  color: #6b7280;
}

.submit-btn {
  width: 100%;
  background-image: linear-gradient(to right, #e6007a, #c00060);
  color: white;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  background-image: linear-gradient(to right, #c00060, #9d004e);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.status-success {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 0.5rem;
}

.status-error {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 0.5rem;
}
