/* Custom Spinner Animation */
.custom-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 123, 255, 0.3);
  border-radius: 50%;
  border-top-color: #007bff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

.sync-text {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  color: #007bff;
}

/* Hide Rice Mill MRP System text and center navigation */
.main-header .logo h1 {
  display: none;
}

.main-header .container {
  justify-content: center;
}

.main-nav {
  width: 100%;
  text-align: center;
}

.main-nav ul {
  justify-content: center;
}
