/* Track Item Styling - Renamed to .cb-beat-row to prevent conflicts */
.cb-beat-row {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 10px; /* Spacing between beats */
    padding: 10px; /* Added padding to give it space */
    box-sizing: border-box; /* Ensures padding doesn't break layout */
}
.cb-beat-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
}
/* This "playing" class is added by Jamroom's {jrCore_media_player_class} */
.cb-beat-row.playing {
    border-color: #009be3;
    background-color: #f0f8ff;
}

/* Artwork styles */
.cb-beat-art-wrap {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.cb-beat-art-img {
    border-radius: 4px;
    display: block;
    width: 100%;
    height: 100%;
}

/* Text and Genre styles */
.cb-beat-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.cb-beat-artist {
    font-size: 13px;
    color: #777;
}
.cb-beat-genre {
    font-size: 12px;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
}
.cb-beat-row td {
    vertical-align: middle;
}