﻿/* Apply alternate background color */
.alternate-list .e-list-item:nth-child(even){
    /* light gray for even rows */
    background-color: #f5f5f5;
}

/* Optional: Odd row styling */
.alternate-list .e-list-item:nth-child(odd){
    /* white for odd rows */
    background-color: #ffffff;
}

/* Optional: hover effect */
.alternate-list .e-list-item:hover {
    /* light blue on hover */
    background-color: #d6eaff;
}
