/* 音乐模块样式 */
.music-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.music-item:hover {
    background-color: #f8f9fa;
}

.music-item span {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.music-actions {
    margin-left: 10px;
    position: relative;
}

.music-actions .action-dots {
    cursor: pointer;
    padding: 0 5px;
    font-size: 1.2em;
    color: #666;
}

.delete-music:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* 音频控件样式 */
#audio#main-audio::-webkit-media-controls-download-button {
    display: none !important;
}

#audio#main-audio::--moz-media-controls {
    overflow: hidden !important;
}

#audio#main-audio::--moz-media-controls-enclosure {
    width: calc(100% + 30px) !important;
}