/* Component Loading State Styling */
/* BroJack Agent #7 - October 2025 */

/* ===== SPINNER ANIMATION ===== */
@keyframes spin-loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== LOADING STATE CONTAINER ===== */
.component-loading-state {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 35, 56, 0.4); /* Match grid background */
  border-radius: 32px;
  z-index: 10;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
}

/* Spinner */
.loading-spinner {
  width: 32px;
  height: 32px;
  animation: spin-loading 1s linear infinite;
}

.spinner-icon {
  display: block;
}

/* Loading text with engraved effect */
.loading-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 9, 30, 0.8); /* Dark text */
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); /* Subtle highlight for engraved effect */
  letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .loading-text {
    font-size: 14px;
  }
  
  .loading-spinner {
    width: 28px;
    height: 28px;
  }
}

