/* Dashboard Utility Classes — Extracted from Inline Styles */
/* This file extracts common inline styles to reusable CSS classes */

/* Reset & Base */
.m-0 { margin: 0; }
.mb-05 { margin-bottom: 0.5rem; }
.mb-08 { margin-bottom: 0.8rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 1.2rem; }
.mb-15 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.flex-1 { flex: 1; }
.flex-1-minw-0 { flex: 1; min-width: 0; }
.display-none { display: none; }
.font-size-1rem { font-size: 1rem; }

/* Typography — Mono Text */
.text-mono-xs { font-family: var(--mono); font-size: 0.58rem; color: var(--text3); }
.text-mono-60 { font-family: var(--mono); font-size: 0.6rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.text-mono-62 { font-family: var(--mono); font-size: 0.62rem; color: var(--text3); }
.text-mono-65 { font-family: var(--mono); font-size: 0.65rem; color: var(--text3); }
.text-mono-68 { font-family: var(--mono); font-size: 0.68rem; color: var(--text3); }
.text-mono-72 { font-family: var(--mono); font-size: 0.72rem; color: var(--text3); }

/* Text Colors */
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text3); }
.text-muted-2 { color: var(--text2); }

/* Flex Layout Utilities */
.flex-space-between-center { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.flex-space-between-center-1 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.flex-align-center-gap-05 { display: flex; align-items: center; gap: 0.5rem; }

/* Border Utilities */
.border-light-gray { border: 1px solid #e5e7eb; padding: 6px 10px; }
.border-light-gray-center-green { border: 1px solid #e5e7eb; padding: 6px 10px; text-align: center; color: #16a34a; }

/* Button Utilities */
.btn-width-auto { width: auto; padding: 0.5rem 1rem; }

/* Accent Colors */
.accent-cyan { accent-color: var(--cyan); }

/* Animation Utilities */
.anim-pulse { animation: agentPulse 1s infinite; display: inline-block; }

/* Light Mode Overrides */
[data-theme="light"] .border-light-gray { border-color: #d1d5db; }
[data-theme="light"] .border-light-gray-center-green { border-color: #d1d5db; }
