body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #202020;
    color: white;
    overflow-x: hidden;
}

/* 🎵 Song Table */
.table-wrapper {
    overflow-x: auto;
    padding-bottom: 20vh; /* Adjust this value if needed */
}

table {
    width: 100%;
    min-width: 420px; /* Adjust this value if needed */
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #555;
}

th {
    cursor: pointer;
    background: #444;
}

th:hover {
    background: #666;
}

/* 🎨 Album Art Icon */
.album-art {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

/* 📌 Fixed Player */
#player-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 20vh;
}

.controls button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

.controls button:hover {
    color: #ffcc00;
}

/* Timeline Container */
#progress-container {
    width: 100%;
    height: 6px;
    background: #444;
    position: relative;
    cursor: pointer;
}

/* Timeline Progress */
#progress-bar {
    width: 0%;
    height: 100%;
    background: #ffcc00;
}

/* Hide columns 3, 4, and 5 on mobile devices */
@media (max-width: 768px) {
    table th:nth-child(3),
    table td:nth-child(3),
    table th:nth-child(4),
    table td:nth-child(4),
    table th:nth-child(5),
    table td:nth-child(5) {
        display: none;
    }
}