/* Base Dashboard Styles */
.gpt-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

/* Hide WordPress admin bar */
#wpadminbar {
  display: none !important;
}

#site-header, #site-foote, .page-header  {
  display:none !important
}

html {
  margin-top: 0 !important;
}

body {
  padding-top: 0 !important;
}

body.logged-in.gym-client #wpadminbar {
  display: none !important;
}

body.logged-in.gym-client {
  padding-top: 0 !important;
}

/* Utility Classes */
.gpt-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top-color: var(--gpt-primary-color, #667eea);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

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

/* Empty State Styles */
.gpt-empty-state {
  text-align: center;
  padding: 80px 40px;
  background: white;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
  margin-top: 40px;
}

.gpt-empty-state svg {
  color: #cbd5e1;
  margin-bottom: 24px;
  stroke-width: 1.5;
}

.gpt-empty-state h2 {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
}

.gpt-empty-state p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.gpt-empty-state-text {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  padding: 40px 20px;
  font-style: italic;
}

.gpt-error-text {
  text-align: center;
  color: #ef4444;
  font-size: 16px;
  padding: 40px 20px;
}
