/* Styling for tile selection with the same blue color as the race track */
@keyframes selection-pulse {
    0% { box-shadow: 0 0 8px rgba(14, 165, 233, 0.7); }
    100% { box-shadow: 0 0 18px rgba(14, 165, 233, 0.9); }
}

.active-tile-selection {
    background-color: rgba(14, 165, 233, 0.15) !important;
    border: 2px solid #0EA5E9 !important;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.8) !important;
    animation: selection-pulse 1.5s infinite alternate !important;
}