/* ============================================================================
   GOBOLD WRITERS INK - UNIFIED DESIGN SYSTEM
   Version: 2.0.0
   Last Updated: April 6, 2026
   
   This is the SINGLE SOURCE OF TRUTH for all design tokens and components.
   DO NOT create competing design systems in other files.
   ============================================================================ */

/* ============================================================================
   1. CSS RESET & BASE STYLES
   ============================================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================================================
   2. DESIGN TOKENS (CSS VARIABLES)
   ============================================================================ */

:root {
  /* ========================================
     BRAND IDENTITY - GoBold Writers Ink
     ======================================== */
  
  /* Primary Brand Colors */
  --brand-green-primary: #2E8B57;
  --brand-green-dark: #1e6b47;
  --brand-green-light: #3ca76a;
  
  --brand-yellow-primary: #FFD700;
  --brand-yellow-dark: #e6c200;
  --brand-yellow-light: #ffdf33;
  
  /* ========================================
     SEMANTIC COLORS (State-Based)
     ======================================== */
  
  /* Success (M-Pesa, Completed) */
  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-success-dark: #059669;
  
  /* Warning (Pending, Approaching Deadline) */
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-warning-dark: #d97706;
  
  /* Error (Failed, Overdue) */
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
  --color-error-dark: #dc2626;
  
  /* Info (In Progress, Notifications) */
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;
  --color-info-dark: #1d4ed8;
  
  /* ========================================
     NEUTRAL PALETTE
     ======================================== */
  
  --neutral-white: #ffffff;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  
  /* ========================================
     TYPOGRAPHY SYSTEM
     ======================================== */
  
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  
  /* Font Sizes (Modular Scale - 1.250 ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* ========================================
     SPACING SYSTEM (8px Base Unit)
     ======================================== */
  
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* ========================================
     ELEVATION & LAYERING (Z-Index Map)
     ======================================== */
  
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-notification: 800;
  
  /* Shadows (Consistent Depth) */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* ========================================
     BORDER RADIUS
     ======================================== */
  
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* ========================================
     TRANSITIONS
     ======================================== */
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Easing Functions */
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* ========================================
     LAYOUT CONSTRAINTS
     ======================================== */
  
  --container-xs: 480px;
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  
  --header-height: 80px;
  --sidebar-width: 280px;
}

/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  max-width: 65ch;
}

a {
  color: var(--brand-green-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-green-dark);
}

/* ============================================================================
   4. LAYOUT COMPONENTS
   ============================================================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-xl { max-width: var(--container-xl); }
.container-2xl { max-width: var(--container-2xl); }
.container-fluid { max-width: 100%; }

@media (min-width: 640px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ============================================================================
   5. BUTTON SYSTEM
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-family-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-green-primary);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Action (Green - Brand) */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-green-primary), var(--brand-green-dark));
  color: var(--neutral-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green-primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Action (Yellow - Accent) */
.btn-secondary {
  background: linear-gradient(135deg, var(--brand-yellow-primary), var(--brand-yellow-dark));
  color: var(--neutral-900);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-yellow-dark), var(--brand-yellow-primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline (Neutral) */
.btn-outline {
  background: transparent;
  color: var(--brand-green-primary);
  border-color: var(--brand-green-primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--brand-green-primary);
  color: var(--neutral-white);
}

/* Ghost (Minimal) */
.btn-ghost {
  background: transparent;
  color: var(--neutral-700);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--neutral-100);
}

/* Success */
.btn-success {
  background: var(--color-success);
  color: var(--neutral-white);
}

.btn-success:hover:not(:disabled) {
  background: var(--color-success-dark);
  transform: translateY(-2px);
}

/* Warning */
.btn-warning {
  background: var(--color-warning);
  color: var(--neutral-white);
}

.btn-warning:hover:not(:disabled) {
  background: var(--color-warning-dark);
  transform: translateY(-2px);
}

/* Danger */
.btn-danger {
  background: var(--color-error);
  color: var(--neutral-white);
}

.btn-danger:hover:not(:disabled) {
  background: var(--color-error-dark);
  transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
}

/* Full Width */
.btn-block {
  width: 100%;
}

/* Icon Buttons */
.btn-icon {
  padding: var(--space-3);
  aspect-ratio: 1;
}

/* ============================================================================
   6. CARD SYSTEM
   ============================================================================ */

.card {
  background: var(--neutral-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--neutral-200);
  background: var(--neutral-50);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--neutral-200);
  background: var(--neutral-50);
}

/* Card Variants */
.card-elevated {
  box-shadow: var(--shadow-lg);
}

.card-bordered {
  border-width: 2px;
}

.card-interactive {
  cursor: pointer;
}

.card-interactive:hover {
  border-color: var(--brand-green-primary);
  box-shadow: var(--shadow-xl);
}

/* ============================================================================
   7. FORM SYSTEM
   ============================================================================ */

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-family-primary);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--neutral-900);
  background: var(--neutral-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-green-primary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-input:invalid,
.form-select:invalid,
.form-textarea:invalid {
  border-color: var(--color-error);
}

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background: var(--neutral-100);
  cursor: not-allowed;
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-1);
}

.form-help {
  display: block;
  font-size: var(--text-sm);
  color: var(--neutral-500);
  margin-top: var(--space-1);
}

/* ============================================================================
   8. STATUS BADGES
   ============================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.badge-success {
  background: var(--color-success-light);
  color: var(--color-success-dark);
}

.badge-warning {
  background: var(--color-warning-light);
  color: var(--color-warning-dark);
}

.badge-error {
  background: var(--color-error-light);
  color: var(--color-error-dark);
}

.badge-info {
  background: var(--color-info-light);
  color: var(--color-info-dark);
}

.badge-neutral {
  background: var(--neutral-100);
  color: var(--neutral-700);
}

/* ============================================================================
   9. NAVIGATION
   ============================================================================ */

.navbar {
  background: var(--neutral-white);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.navbar-brand {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--brand-green-primary);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.navbar-link {
  font-weight: var(--font-weight-medium);
  color: var(--neutral-600);
  transition: color var(--transition-fast);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--brand-green-primary);
}

/* ============================================================================
   10. MODAL SYSTEM
   ============================================================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
}

.modal-content {
  position: relative;
  background: var(--neutral-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: var(--z-modal);
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: var(--space-6);
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--neutral-200);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ============================================================================
   11. UTILITY CLASSES
   ============================================================================ */

/* Spacing */
.m-0 { margin: 0; }
.m-2 { margin: var(--space-2); }
.m-4 { margin: var(--space-4); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-0 { padding: 0; }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-primary { color: var(--brand-green-primary); }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-error { color: var(--color-error); }
.text-neutral-500 { color: var(--neutral-500); }
.text-neutral-700 { color: var(--neutral-700); }
.text-neutral-900 { color: var(--neutral-900); }

/* Background Colors */
.bg-white { background-color: var(--neutral-white); }
.bg-neutral-50 { background-color: var(--neutral-50); }
.bg-neutral-100 { background-color: var(--neutral-100); }
.bg-primary { background-color: var(--brand-green-primary); }

/* Border Radius */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Height */
.h-full { height: 100%; }
.h-auto { height: auto; }

/* ============================================================================
   12. RESPONSIVE DESIGN (Mobile-First)
   ============================================================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .navbar-nav {
    display: none;
  }
  
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  
  .btn-xl {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
  }
}

/* ============================================================================
   13. ACCESSIBILITY & PERFORMANCE
   ============================================================================ */

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--brand-green-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --neutral-200: #000000;
    --neutral-300: #000000;
  }
  
  .btn-outline {
    border-width: 3px;
  }
}

/* ============================================================================
   14. DARK MODE SUPPORT (Future-Ready)
   ============================================================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --neutral-white: #111827;
    --neutral-50: #1f2937;
    --neutral-100: #374151;
    --neutral-200: #4b5563;
    --neutral-300: #6b7280;
    --neutral-400: #9ca3af;
    --neutral-500: #d1d5db;
    --neutral-600: #e5e7eb;
    --neutral-700: #f3f4f6;
    --neutral-800: #f9fafb;
    --neutral-900: #ffffff;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
}

/* ============================================================================
   END OF GLOBAL DESIGN SYSTEM
   ============================================================================ */


/* ============================================================================
   15. ADDITIONAL UTILITY CLASSES
   ============================================================================ */

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* Margin Utilities (Extended) */
.mr-2 { margin-right: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.ml-auto { margin-left: auto; }

/* Color Utilities (Extended) */
.text-warning { color: var(--color-warning); }
.text-success-dark { color: var(--color-success-dark); }

/* Flex Utilities */
.align-items-center { align-items: center; }
.gap-2 { gap: var(--space-2); }

/* Button Utilities */
.btn-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  color: inherit;
}

/* Progress Fill */
.progress-fill {
  height: 100%;
  background: var(--brand-green-primary);
  border-radius: var(--radius-sm);
  transition: width var(--transition-slow);
}

/* File Icons */
.file-check-icon {
  color: var(--color-success);
}

/* Notification Styles */
.notification-error {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--color-error-light);
  color: var(--color-error-dark);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-error);
  z-index: var(--z-notification);
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.notification-error-content {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.notification-error-actions {
  margin-top: var(--space-2);
}

.notification-error-link {
  color: var(--color-error-dark);
  text-decoration: underline;
}

/* ============================================================================
   END OF ADDITIONAL UTILITIES
   ============================================================================ */


/* Progress bar with data attributes */
.progress-fill[data-progress] {
  animation: progressGrow var(--transition-slower) ease-out forwards;
}

.progress-fill[data-progress="0"] { width: 0%; }
.progress-fill[data-progress="10"] { width: 10%; }
.progress-fill[data-progress="20"] { width: 20%; }
.progress-fill[data-progress="25"] { width: 25%; }
.progress-fill[data-progress="30"] { width: 30%; }
.progress-fill[data-progress="40"] { width: 40%; }
.progress-fill[data-progress="50"] { width: 50%; }
.progress-fill[data-progress="60"] { width: 60%; }
.progress-fill[data-progress="70"] { width: 70%; }
.progress-fill[data-progress="75"] { width: 75%; }
.progress-fill[data-progress="80"] { width: 80%; }
.progress-fill[data-progress="90"] { width: 90%; }
.progress-fill[data-progress="100"] { width: 100%; }

@keyframes progressGrow {
  from { width: 0; }
}
