body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.album-container {
    position: relative;
    width: 60%; /* Adjusted for better fit on objkt */
    max-width: 400px; /* Adjusted for better fit on objkt */
    aspect-ratio: 1 / 1; /* Assuming square album art */
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: transform 0.5s ease-in-out;
}

.page img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.controls button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#play-pause-btn {
    width: 80px; /* Fixed width to prevent shifting */
    display: flex;
    justify-content: center;
    align-items: center;
}
