.musik-panel {
  padding: 15px 10px;
}

.musik-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.musik-color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.musik-color-dot.selected {
  border-color: white;
  transform: scale(1.2);
}

#musik-eingabe {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1.5px solid #D9D0C4;
  font-family: inherit;
}

.musik-add-btn {
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  background: #486959;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}

.musik-add-btn-inaktiv {
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  background: #486959;
  opacity: 0.4;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}

.musik-add-btn:hover {
  background: #3a5547;
}

.musik-widget {
  background: white;
  border: 3px solid;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.musik-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  padding-left: 4px;
}

.musik-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.musik-titel {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}

.musik-fortschritt {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.musik-balken {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.5s linear;
}

.musik-zeiten {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.musik-datei-label {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #486959;
  background: transparent;
  color: #486959;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  margin-bottom: 6px;
}

.musik-datei-label:hover {
  background: rgba(72, 105, 89, 0.08);
}

.musik-datei-name {
  display: block;
  font-size: 14px;
  color: #8a7f72;
  text-align: center;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}