#album-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 1rem;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#album-container h2 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

#album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.album-item {
    background-color: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.album-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.album-cover {
    width: 100%;
    height: auto;
    display: block;
}

.album-title {
    padding: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
}

#progress-container {
    width: 100%;
    height: 8px;
    background-color: #444;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#progress-bar {
    height: 100%;
    background-color: #fff;
    width: 0%;
    border-radius: 4px;
    transition: width 0.1s linear;
}