/* ============================================
   Auction Stage Colors — Shared Variables
   Single source of truth for all auction stage colors.
   ============================================ */

:root {
    --auction-first-color:  #27ae60;   /* Green  — 1ª Subasta */
    --auction-second-color: #f39c12;   /* Orange — 2ª Subasta */
    --auction-third-color:  #e74c3c;   /* Red    — 3ª Subasta */
}

/* Background utility classes */
.auction-first-bg  { background: var(--auction-first-color)  !important; }
.auction-second-bg { background: var(--auction-second-color) !important; }
.auction-third-bg  { background: var(--auction-third-color)  !important; }

/* Text color utility classes */
.auction-first-text  { color: var(--auction-first-color)  !important; }
.auction-second-text { color: var(--auction-second-color) !important; }
.auction-third-text  { color: var(--auction-third-color)  !important; }

/* Border color utility classes */
.auction-first-border  { border-color: var(--auction-first-color)  !important; }
.auction-second-border { border-color: var(--auction-second-color) !important; }
.auction-third-border  { border-color: var(--auction-third-color)  !important; }
