#matching-status {
  margin-top: 15px;
  font-family: monospace;
  color: #224A59;
  background: #F5F5F5;
  padding: 8px 12px;
  border-radius: 8px;
  display: none;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#matching-status .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid #ccc;
  border-top-color: #224A59;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

.dataTable {
	font-size: 12px;
}