#loadMore {
  display: block;
  margin: 30px auto;
  padding: 12px 32px;
  background: #075e5447;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

#loadMore:hover {
  background: #075e5494;
}

#loadMore:active {
  transform: scale(0.95);
}

/* Анимация для состояния загрузки */
#loadMore.loading {
  pointer-events: none;
  opacity: 0.7;
}

#loadMore.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}