/* 基础样式，继承自主页的设计理念 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #F0F0F0;
    color: #333;
    margin: 0;
    padding: 0;
}

.app-header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

.app-header h1 {
    font-size: 36px;
    margin: 0;
}

.player-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* 正在播放信息 */
.now-playing-info {
    background-color: #FFFACD; /* 浅黄色背景突出显示 */
    border: 3px solid #FFD700;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.now-playing-info p {
    font-size: 24px; /* 正在播放文字大小 */
    font-weight: bold;
    margin: 0;
}

#currentSongTitle {
    color: #a52a2a; /* 红色突出歌曲名 */
}

/* 播放控制按钮 (核心) */
.controls-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.control-btn {
    flex: 1; /* 按钮平均分配宽度 */
    padding: 25px 10px; /* 超大内边距，方便点击 */
    font-size: 22px; /* 按钮文字大小 */
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: #4CAF50; /* 绿色播放键 */
    color: white;
}

.secondary-btn {
    background-color: #F44336; /* 红色停止键 */
    color: white;
}

.back-btn {
    background-color: #ADD8E6; /* 浅蓝色返回键 */
    color: #333;
}

.control-btn:hover {
    opacity: 0.85;
}

/* 歌曲列表 */
.song-list-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 5px;
}

.song-list {
    list-style: none;
    padding: 0;
}

.song-item {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 20px; /* 歌曲列表文字大小 */
    cursor: pointer;
    border-left: 5px solid transparent;
    transition: background-color 0.1s, border-left 0.2s;
}

.song-item:hover {
    background-color: #E0E0E0;
}

.active-song {
    border-left: 5px solid #007bff; /* 突出显示正在播放的歌曲 */
    font-weight: bold;
    background-color: #E6F0FF;
}