/****************************************************************** 
 * Classic Theme - Colors
 * EXACTLY matching the original OldVersion.com color palette
 ******************************************************************/

:root {
  /* Primary Colors - Based on actual OldVersion.com */
  --color-primary: #00548f;        /* Navy blue - main brand color */
  --color-secondary: #292929;      /* Dark gray - navigation bar */
  --color-background: #ffffff;     /* White - main background */
  --color-text: #000000;           /* Black - main text */
  --color-white: #ffffff;          /* Pure white */
  --color-black: #000000;          /* Pure black */
  
  /* Accent Colors */
  --color-accent: #ff6b35;         /* Orange - upload button */
  --color-success: #6ca000;         /* Green - success states, meta-data */
  --color-warning: #ffa500;        /* Orange - warning states */
  --color-danger: #ff0000;         /* Red - error states, badges */
  --color-info: #3e4e9c;           /* Blue - info states, links */
  --color-yellow: #ffe718;         /* Yellow - heading highlights */
  
  /* UI Colors */
  --color-button-bg: #f0f0f0;      /* Light gray - button background */
  --color-button-text: #000000;    /* Black - button text */
  --color-button-border: #cccccc;  /* Light gray - button border */
  --color-button-hover: #e0e0e0;   /* Slightly darker gray - hover */
  
  /* Form Colors */
  --color-form-bg: #ffffff;        /* White - form background */
  --color-form-border: #cccccc;    /* Light gray - form border */
  --color-form-text: #000000;      /* Black - form text */
  
  /* Link Colors */
  --color-link: #00548f;           /* Navy - default links */
  --color-link-hover: #3e4e9c;     /* Blue - hover links */
  --color-link-visited: #800080;   /* Purple - visited links */
  --color-link-active: #6ca000;     /* Green - active links */
  
  /* Border Colors */
  --color-border: #cccccc;         /* Light gray - main borders */
  --color-border-light: #ffffff;   /* White - light borders */
  --color-border-dark: #999999;    /* Gray - dark borders */
  
  /* Background Colors */
  --color-bg-primary: #f5f5f5;     /* Very light gray - page background */
  --color-bg-secondary: #ffffff;   /* White - content backgrounds */
  --color-bg-header: #ffffff;      /* White - header background */
  --color-bg-footer: #00548f;      /* Navy blue - footer background */
  --color-bg-card: #ffffff;        /* White - card backgrounds */
  --color-bg-table-header: #f0f0f0; /* Light gray - table headers */
  --color-bg-table-row-even: #f9f9f9; /* Very light gray - alternating rows */
  --color-bg-sidebar: #ffffff;     /* White - sidebar background */
  
  /* Text Colors */
  --color-text-primary: #000000;   /* Black - primary text */
  --color-text-secondary: #2a2a2a; /* Dark gray - secondary text */
  --color-text-tertiary: #4c4c4c;  /* Medium gray - tertiary text */
  --color-text-inverse: #ffffff;   /* White - text on dark backgrounds */
  --color-text-muted: #666666;     /* Gray - muted text */
  --color-text-small: #666666;     /* Gray - small text */
  
  /* Alert Colors */
  --color-success-bg: #d4edda;     /* Light green - success background */
  --color-danger-bg: #f8d7da;      /* Light red - danger background */
  --color-warning-bg: #fff3cd;     /* Light yellow - warning background */
  --color-info-bg: #d1ecf1;        /* Light blue - info background */
  
  /* Badge Colors */
  --color-badge-bg: #ff0000;       /* Red - badge background */
  --color-badge-text: #ffffff;     /* White - badge text */
  
  /* Shadow Colors */
  --color-shadow: #000000;         /* Black - shadows */
  --color-shadow-light: rgba(0, 0, 0, 0.1); /* Very light black - subtle shadows */
  
  /* Special Colors for Classic Theme */
  --color-stats-bg: #f0f0f0;       /* Light gray - stats background */
  --color-category-bg: #ffffff;    /* White - category background */
  --color-category-border: #cccccc; /* Light gray - category borders */
  --color-download-box: #e7f6c7;  /* Light green - download box background */
  --color-border-silver: #c0c0c0;  /* Silver gray - borders (download boxes) */
  
  /* Navigation Colors */
  --color-nav-bg: #292929;         /* Dark gray - navigation background */
  --color-nav-text: #ffffff;       /* White - navigation text */
  --color-nav-hover: #00548f;      /* Navy blue - navigation hover */
  --color-nav-active: #00548f;     /* Navy blue - active navigation */
  
  /* Widget Colors */
  --color-widget-bg: #ffffff;      /* White - widget background */
  --color-widget-border: #cccccc;  /* Light gray - widget border */
  --color-widget-header-bg: #000000; /* Black - widget header background */
  --color-widget-header-text: #ffffff; /* White - widget header text */
  
  /* Footer Colors */
  --color-footer-bg: #00548f;      /* Navy blue - footer background */
  --color-footer-text: #ffffff;    /* White - footer text */
  --color-footer-link: #ffffff;    /* White - footer links */
  --color-footer-link-hover: #cccccc; /* Light gray - footer link hover */
}