.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #aaa;
  border-top-color: #228be6;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

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