        body {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
			background-color: #f9f9f9;
			color: #333;
			margin: 0;
			padding: 0;
		}
        p {
            text-align: center;
            margin: 0px 0px 24px 0px;
           
        }

		.progress-bar {
			position: relative;
			height: 15px;
			background-color: #ccc;
			margin-top: 10px;
			margin-bottom: 10px;
		}

		.progress-bar .progress {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			background-color: #0066cc;
            
		}


/* Now playing */
#now-playing {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;
}
		h1 {
			font-size: 40px;
			text-align: center;
			margin-top: 50px;
			margin-bottom: 30px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		h1 img {
			margin-right: 20px;
			height: 60px;
		}
		.container {
			width: 80%;
			margin: 0 auto;
			padding: 20px;
			background-color: #fff;
			box-shadow: 0 0 10px rgba(0,0,0,0.2);
			margin-top: 50px;
			margin-bottom: 50px;
		}
		.file-list li {
			margin: 10px 0;
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 10px;
			border-radius: 5px;
			box-shadow: 0 0 10px rgba(0,0,0,0.1);
			transition: all 0.3s ease;
		}
		.file-list li:hover {
			box-shadow: 0 0 10px rgba(0,0,0,0.2);
			transform: translateY(-5px);
		}
		.file-list li.playing {
			background-color: #eee;
		}
		.file-list li span {
			font-size: 20px;
			font-weight: bold;
		}
		.file-list li button {
			padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px; /* added font-size */
    margin-top: 10px; /* added margin-top */
    margin-bottom: 10px; /* added margin-bottom */
		}
		.file-list li button:hover {
			background-color: #444;
		}
		.file-list li a {
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px; /* added font-size */
    margin-top: 10px; /* added margin-top */
    margin-bottom: 10px; /* added margin-bottom */
}
		.file-list li a:hover {
			background-color: #444;
		}
		.pagination {
			display: flex;
			justify-content: center;
			margin-top: 20px;
		}
		.pagination a {
			margin: 0 10px;
			color: #000;
			text-decoration: none;
			font-weight: bold;
			font-size: 18px;
			padding: 5px 10px;
			border-radius: 5px;
			transition: all 0.3s ease;
		}
		.pagination a:hover {
			background-color: #000;
			color: #fff;
		}
		.pagination .active {
			color: #fff;
			background-color: #000;
			padding: 5px 10px;
			border-radius: 5px;
		}
		.about-section {
			margin-top: 50px;
			font-size: 14px;
			text-align: center;
		}