/**
 * Asset Manager Public Styles
 *
 * @package WordPress_Asset_Manager
 * @since 1.0.0
 */

/* CSS Variables for consistent theming */
:root {
  --am-primary-blue: #2563eb;
  --am-secondary-dark: #1e293b;
  --am-light-background: #f1f5f9;
  --am-muted-text: #64748b;
  --am-success-green: #22c55e;
  --am-warning-yellow: #facc15;
  --am-error-red: #ef4444;
  --am-border-radius: 8px;
  --am-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Public styles will be implemented in later tasks */
.asset-manager-public {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Placeholder styles for basic structure */
.am-public-dashboard {
  background: white;
  border-radius: var(--am-border-radius);
  box-shadow: var(--am-shadow);
  padding: 20px;
  margin: 20px 0;
}
