
main.music.list .container { max-width: 900px; padding: 0 1.5rem; }
main.music.list .songs { margin-bottom: 5rem; }

.board-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.board-header form { display: flex;}

.teams { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin: 3rem 0; }
.teams .count { color: var(--bs-red); font-weight: 600; margin-left: 0.25rem; font-size: 0.9em; }

h2 .count { font-size: 0.6em; color: var(--bs-gray-600); margin-left: 0.25rem; }

.music-table tr.date-group td { padding-top: 2rem; color: var(--bs-gray-500); font-weight: 500; }
.music-table td { vertical-align: middle; }
.music-table td.track { width: 50px; text-align: center; color: var(--bs-gray-400); }
.music-table td.title { font-weight: 500; width: 90%; }
.music-table td.title .has-meta { display: flex; align-items: center; justify-content: space-between;}
.music-table td.title .artist { color: var(--bs-info); font-weight: 400; }
.music-table td.title time { margin: 0; color: var(--bs-gray-400); font-weight: 300; font-family: var(--font-monospace) }
.music-table td.title .description { color: var(--bs-gray-600); font-weight: 400; font-size: 0.9em; margin-top: 0.25rem; }

.music-table td.buttons { width: 1%; text-align: right; white-space: nowrap; }
.music-table td.buttons .btn { display: flex; align-items: center; justify-content: center; }
.music-table td.buttons .count { font-size: 0.8em; margin-left: 0.125rem; }
.music-table td.buttons .count.play-count { color: var(--bs-yellow); }
.music-table td.buttons .count.download-count { color: var(--bs-orange); }

.play-btn.playing { background-color: var(--bs-red); border-color: var(--bs-red); color: white; }
.play-btn.playing:hover { background-color: var(--red-dark); border-color: var(--red-dark); color: white; }

#audioPlayer {
    position: fixed;
    width: 100%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    bottom: 2rem;
    border-radius: 3rem;
    border: solid 1px rbga(255, 255, 255, 0.3);
    padding: 0.125rem;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

#audioPlayer.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#audioPlayer .metadata {
    flex-grow: 1;
    margin: 0 1rem;
    overflow: hidden;
}

#audioPlayer .metadata #currentTitle {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.25rem;
}

#audioPlayer .metadata #currentArtist {
    font-size: 0.9em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#audioPlayer .progress {
    cursor: pointer;
    height: 2px !important;
    transition: height 0.5s ease;
}

#audioPlayer .progress:hover {
    height: 12px !important;
    transition: height 0.5s ease;
}

#audioPlayer .progress .progress-bar {
    background-color: var(--bs-red);
}

#audioPlayer .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}




/* album */
.album {
    margin-bottom: 4rem;
}

.album .album-cover {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2rem;
}

.album .album-cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.album-info {
    padding: 2rem 1rem 0 2rem;
}

.album-info h6 {
    color: var(--bs-blue);
}

.album-info h5 {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.75rem;
    font-style: italic;
    margin: 0.5rem 0 1rem 0;
}

.album-info .description {
    color: var(--bs-gray-600);
    line-height: 1.5;
    max-height: 6em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-info time {
    color: var(--bs-gray-400);
    font-size: 0.9em;
}

.album-info address {
    font-style: normal;
    color: var(--bs-gray-400);
    font-size: 0.9em;
}

.album-artist .inst {
    color: var(--bs-info);
    text-align: right;
    padding-right: 0.5rem;
}

.program-song {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.program-song .song-content {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.program-song .song-title {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--red-dark);
}

.program-song .song-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.program-song .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-song .count {
    font-size: 0.8em;
    margin-left: 0.125rem;
}

.program-song .count.play-count {
    color: var(--bs-yellow);
}

.program-song .count.download-count {
    color: var(--bs-orange);
}

.program hr {
    width: 30%;
    color: var(--bs-orange);
    margin: 2rem 0;
}

.album-header {
    margin-bottom: 1rem;
    border-radius: 2rem;
}

@media (min-width: 576px) {
    .album-header {
        display: grid;
        grid-template-columns: 200px 1fr;
    }
}

@media (min-width: 768px) {
    .album-header {
        grid-template-columns: 300px 1fr;
    }
}



/* form */
.music-form {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-section {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--bs-gray-800);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bs-gray-100);
}

.form .btn-section {
    text-align: center;
    margin: 3rem 0;
}