/* 
* Colors Stylesheet
* Company Name - Web & Mobile Development
*/

:root {
  /* Primary Brand Colors */
  --primary-color: #00476d;        /* Logo primary blue */
  --primary-dark: #003459;         /* Deep blue for hover states */
  --primary-light: #0066a0;        /* Lighter blue for accents */
  
  /* Secondary Colors */
  --secondary-color: #555555;      /* Medium gray */
  --secondary-light: #AAAAAA;      /* Light gray */
  
  /* Neutral Colors */
  --light-color: #f8f9fa;         /* Very light background */
  --dark-color: #000000;          /* Charcoal/Near black */
  --white-color: #FFFFFF;         /* Pure white */
  
  /* Status Colors */
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Background and Text */
  --body-bg: #ffffff;
  --body-color: #000000;
  --text-muted: #555555;
}
