/* assets/css/style.css */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f4f6f8;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

h1 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 20px;
}

input[type="file"], input[type="range"] {
  width: 100%;
  margin-bottom: 12px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.audio-controls label {
  min-width: 120px;
  font-weight: 600;
}

.audio-controls input[type="range"] {
  flex: 1;
}

button {
  padding: 10px 16px;
  border: none;
  background-color: #007BFF;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 8px;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#timeDisplay {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
