/* barriers.css - Minute barrier color coding for ARBITRARYBARRIERS */
/* First place always gets gold glow */
.category-table tbody tr:first-child td {
    color: gold !important; /* Gold */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.4);
}
/* Silver minute barrier - even less bright */
.category-table tr.minute-0 td {
    color: #C0C0C0 !important; /* Less bright silver */
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.7), 0 0 15px rgba(192, 192, 192, 0.5);
}
/* Light Maroon minute barrier (changed from Bronze) */
.category-table tr.minute-1 td {
    color: #C06060 !important; /* Light Maroon */
    text-shadow: 0 0 8px rgba(192, 96, 96, 0.7), 0 0 15px rgba(192, 96, 96, 0.4);
}
/* Glowing Purple minute barrier (changed from Grey) */
.category-table tr.minute-2 td {
    color: #8A2BE2 !important; /* Purple */
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.7), 0 0 15px rgba(138, 43, 226, 0.4);
}
/* Honorary mention - Same color as standard purple but with brighter glow */
.category-table tr.minute-3 td {
    color: #7A5267 !important; /* Lighter Purple */
    text-shadow: 0 0 10px rgba(122, 82, 103, 0.9), 0 0 20px rgba(122, 82, 103, 0.7);
}
/* Standard Purple minute barrier (for all remaining barriers) - lightened */
.category-table tr.minute-4 td, 
.category-table tr.minute-5 td, 
.category-table tr.minute-6 td, 
.category-table tr.minute-7 td, 
.category-table tr.minute-8 td, 
.category-table tr.minute-9 td, 
.category-table tr.minute-10 td {
    color: #7A5267 !important; /* Lighter Purple */
    text-shadow: none;
}
/* Empty rows follow minute-3 styling by default */
.category-table tr td:empty {
    color: #7A5267 !important; /* Matching lighter purple */
    text-shadow: none;
}
/* Ensure row numbers also follow the color scheme when rest of row is empty */
.category-table tr:not(.minute-0):not(.minute-1):not(.minute-2):not(:first-child) td:first-child {
    color: #7A5267 !important; /* Matching lighter purple */
    text-shadow: none;
}