.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #111;
}

.modal-content {
  background: #fff;
  max-width: 600px;
  margin: 8% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-header {
  min-height: 16.42857143px;
  padding: 0 0 16px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.modal-title {
  margin-bottom: 8px;
}

.modal a {
  color: #75a012;
}

.modal a:hover {
  color: #75a012;
  opacity: 0.8;
}

.close {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

#reportForm,
#js-form-report-error {
  margin-top: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-group .required {
  color: #ea0000;
}

.form-group textarea:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: #75a012;
}

.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background: #75a012;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#openReportModal {
  cursor: pointer;
  color: #858e97;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

button[type="submit"]:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group .report-error {
  display: block;
  color: #ea0000;
  font-size: 12px;
  margin-top: 4px;
}

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

.report_successfully {
  text-align: center;
  padding: 24px 12px 12px;
}

.report_successfully .report-icon {
  margin-bottom: 12px;
  color: #75a012;
}

.report_successfully .report-header {
  font-weight: 600;
  margin-bottom: 8px;
}

.report_successfully .report-description {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.report_successfully .close-message {
  margin-top: 16px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  color: #888;
}

.report_successfully .close-message:hover {
  color: #333;
}
