/* MPro Music - Estilo general */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

/* Splash */
#splash {
  background-color: #000000;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.6s ease;
}

#splash .logo {
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* App */
#app {
  width: 100%;
  max-width: 420px;
  padding: 15px;
}

header {
  text-align: center;
  margin-bottom: 10px;
}

main {
  text-align: center;
}

#fileInput {
  display: none;
}

#musicList {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  max-height: 260px;
  overflow-y: auto;
}

#musicList li {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

footer button {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
}

#progress {
  width: 70%;
}
