/* پلیر فوتر */
.mplist-footer-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.player-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    float: left;
width: 100%;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.control-btn:hover {
    color: #ff6600;
}

.player-info {
    text-align: center;
    margin-bottom: 10px;
}

.song-title {
    font-size: 18px;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    margin-top: 10px;
    height: 8px;
    border-radius: 5px;
    background: #444;
    outline: none;
}

.current-time,
.duration {
    font-size: 14px;
    margin-top: 5px;
}

.mplist-playlist {
    display: none;
    background-color: #333;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
}

.mplist-playlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.playlist-item {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.playlist-item:hover {
    background-color: #555;
}

.mplist-playlist-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mplist-playlist-btn:hover {
    background-color: #ff9933;
}

#mplist-footer-player {
    display: none;
}

#mplist-playlist {
    display: none;
}

#mplist-show-playlist-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-top: 10px;
}
#mplist-play-btn.playing {
    background-color: #4CAF50; /* رنگ سبز برای حالت پخش */
    color: white;
}

#mplist-play-btn {
    background-color: #f44336; /* رنگ قرمز برای حالت غیر فعال */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
}
