
.player-bar
{
    background-color: #181818;
    height: 90px;
    border-top: 1px solid #282828;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.sidebar-logo
{
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

    .sidebar-logo i
    {
        margin-right: 10px;
    }

.nav-item
{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #b3b3b3;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

    .nav-item:hover, .nav-item.active
    {
        color: #ffffff;
    }

    .nav-item i
    {
        margin-right: 15px;
        font-size: 20px;
    }

.album-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
}

.album-card
{
    background-color: #181818;
    border-radius: 8px;
    padding: 16px;
    transition: background-color 0.3s;
}

    .album-card:hover
    {
        background-color: #282828;
    }

.album-cover
{
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.album-title
{
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-artist
{
    font-size: 14px;
    color: #b3b3b3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-list
{
    margin-top: 20px;
}

.track-item
{
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .track-item:hover
    {
        background-color: #2a2a2a;
    }

.track-number
{
    width: 40px;
    text-align: center;
    color: #b3b3b3;
}

.track-play
{
    width: 40px;
    text-align: center;
    color: #1db954;
    display: none;
}

.track-item:hover .track-number
{
    display: none;
}

.track-item:hover .track-play
{
    display: block;
}

.track-info
{
    flex-grow: 1;
}

.track-title
{
    color: #ffffff;
    margin-bottom: 4px;
}

.track-artist
{
    font-size: 14px;
    color: #b3b3b3;
}

.track-duration
{
    color: #b3b3b3;
    padding-right: 20px;
}

.player-bar
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.now-playing
{
    display: flex;
    align-items: center;
    width: 30%;
}

.now-playing-cover
{
    width: 56px;
    height: 56px;
    margin-right: 14px;
    border-radius: 4px;
}

.now-playing-info
{
    display: flex;
    flex-direction: column;
}

.now-playing-title
{
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 3px;
}

.now-playing-artist
{
    color: #b3b3b3;
    font-size: 12px;
}

.player-controls
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.control-buttons
{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.control-button
{
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
}

    .control-button.play-pause
    {
        color: #ffffff;
        background-color: #ffffff;
        color: #000000;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.progress-bar
{
    width: 100%;
    display: flex;
    align-items: center;
}

.progress-time
{
    color: #b3b3b3;
    font-size: 12px;
    min-width: 40px;
}

.progress-slider
{
    flex-grow: 1;
    margin: 0 10px;
    height: 4px;
    background-color: #535353;
    border-radius: 2px;
    position: relative;
}

.progress-current
{
    height: 100%;
    background-color: #b3b3b3;
    border-radius: 2px;
    width: 30%; /* This would be dynamic in a real app */
}

.volume-controls
{
    display: flex;
    align-items: center;
    width: 30%;
    justify-content: flex-end;
}

.volume-icon
{
    color: #b3b3b3;
    margin-right: 10px;
}

.volume-slider
{
    width: 100px;
    height: 4px;
    background-color: #535353;
    border-radius: 2px;
    position: relative;
}

.volume-current
{
    height: 100%;
    background-color: #b3b3b3;
    border-radius: 2px;
    width: 70%; /* This would be dynamic in a real app */
}
