@import url("../style.css");
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
  margin: 0;
  overflow: clip;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  height: calc(100% - 10px * 2);
    /*display: none;*/
}

#music-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  user-select: none;
}

#info {
  font-size: 20px;
  gap: 2px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
}

.bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

#progress-bar {
  display: flex;
  margin: 4px 0;
  width: 100%;
  height: 4px;
  background: #81bdff;
  cursor: pointer;
}

#playtime{
  white-space: nowrap;
}

.knob {
  width: 8px;
  height: 8px;
  background: #4fa3ff;
  position: relative;
  top: -2px;
}

#volume-bar {
  position: relative;
  margin: 7px 0;
  width: 100%;
  height: 4px;
  background: #81bdff;
  cursor: pointer;
}

#volume-fill {
  width: 100%;
  height: 4px;
  background: #4fa3ff;
}

#volume-bar .knob {
  position: absolute;
  top: -2px;
  left: calc(100% - 4px);
  width: 8px;
  height: 8px;
  background: #4fa3ff;
}