/* Product Report Button - In Product Details Tab */
.brs-product-report-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.brs-report-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2196f3;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.brs-report-button:hover {
  color: #1976d2;
  text-decoration: underline;
}

.brs-report-button i {
  font-size: 18px;
}

/* Modal Styles */
.brs-report-modal .modal-dialog {
  max-width: 600px;
  width: 100%;
}

.brs-report-modal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.brs-report-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.brs-report-modal .form-group {
  margin-bottom: 20px;
}

.brs-report-modal label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.brs-report-modal .required {
  color: #dc3545;
}

.brs-report-modal .form-control {
  border-radius: 4px;
  border: 1px solid #ced4da;
  padding: 10px 12px;
}

.brs-report-modal .form-control:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.brs-report-modal textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Success/Error Messages */
.brs-report-success,
.brs-report-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.brs-report-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.brs-report-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Submit Button Loading State */
.brs-submit-btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.brs-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: brs-spin 0.8s linear infinite;
}

@keyframes brs-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .brs-report-modal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  .brs-report-modal .modal-body {
    padding: 15px;
  }

  .brs-report-modal .modal-footer {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
  }

  .brs-report-modal .modal-footer .btn {
    width: 100%;
    margin: 0;
  }
}
