/* 通用组件样式 */

/* 歌曲封面 */
.song-cover {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 歌曲信息 */
.song-info {
    flex: 1;
    min-width: 0;
}

.song-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.song-artist {
    font-size: 13px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 按钮样式 */
.favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #ccc;
    transition: color 0.3s;
    padding: 8px;
}

.favorite-btn:hover {
    color: #e74c3c;
}

.favorite-btn .fa-heart.fas {
    color: #e74c3c;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
    transition: color 0.3s;
    padding: 8px;
}

.remove-btn:hover {
    color: #e74c3c;
}

/* 列表通用样式 */
.song-number {
    width: 30px;
    text-align: center;
    color: #999;
    font-weight: 600;
}

.song-album {
    font-size: 13px;
    color: #999;
}
/* App Footer Split Layout */
.app-footer {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links-left, .footer-links-right {
    display: flex;
    gap: 20px;
}

.footer-spacer {
    flex: 1;
    min-width: 100px; /* Space for the player */
}

.app-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.app-footer a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

