body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    background-image: url(bg.png);
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#player-container {
    width: 384px;
    height: 570px;
    background-color: #0000007d;
    border: 1px solid #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
	color: #fff;
}

#logo {
    width: 250px;
    margin: 0 auto 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

#current-time {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #fff;
}

#stats {
    margin-bottom: 20px;
    text-align: left;
    padding: 0 20px;
    color: #fff;
}

#stats p {
    margin: 10px 0;
}

#controls {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 190px;
    margin-left: 80px;
}

input[type="range"] {
    width: 300px;
    background-color: transparent;
}

/* Sidebar styling */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: right;
}

.sidebar a {
    padding: 8px 32px 8px 8px;
    text-decoration: none;
    font-size: 18px;
    color: #dfdfdf;
    display: block;
    transition: 0.3s;
    /*border-block: 1px solid rgba(100, 100, 100, 0.3);*/
}

.sidebar a:hover {
    color: #878787;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

/* Menu icon styling */
#menu-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

#nav-frame {
    width: 100%;
    height: calc(100% - 150px); /* Adjust height as needed */
    border: none;
    margin-top: 20px;
}