/* EmptyState Component */
.empty-state {
  min-height: calc(100vh - 300px);
  padding: 2rem;
  background-color: var(--surface-ground);
  border-radius: var(--border-radius);
}

.empty-state-content {
  max-width: 600px;
  margin: 0 auto;
}

.empty-state-image {
  width: 250px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Style global pour le bouton large dans EmptyState */
.empty-state {
  :deep(.p-button.p-button-lg) {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

/* LoadingState Component */
.loading-state {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 6px solid rgba(255, 113, 93, 0.2);
  border-top-color: #FF715D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: var(--text-color-secondary);
  font-size: 1rem;
  margin: 0;
}

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

.vipzone-spinner {
  width: 100px !important;
  height: 100px !important;
  border: 6px solid rgba(0, 0, 0, 0.1) !important;
  border-top-color: #FF715D !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  display: block !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 9999 !important;
} 