body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.jukebox-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.playlist {
    display: grid;
    gap: 1rem;
    margin-bottom: 100px;
}

.track-button {
    background: #f7f7f7;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.track-button:hover {
    background: #f8f8f8;
    border-color: #ddd;
}

#juke {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

audio {
    width: 100%;
    display: block;
}

.no-audio-message {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem;
}
