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

.uhr-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;
}

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

.uhr-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;
}

#btn-uhr-hinzufuegen {
  margin-top: 10px;
}

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

.uhr-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);
}

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

.uhr-darstellung-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f72;
  margin-bottom: 6px;
  margin-top: 10px;
}

.uhr-darstellung-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid #ccc;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.uhr-darstellung-btn.aktiv {
  border-color: #486959;
  background: #486959;
  color: #fff;
}

.uhr-darstellung-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.uhr-widget {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.uhr-widget-digital {
  aspect-ratio: 3 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.uhr-digital-anzeige {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}