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

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

.qrcode-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-qrcode-hinzufuegen {
  margin-top: 10px;
}

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

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


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

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

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

.qrcode-url-label {
  font-size: 15px;
  font-weight: 800;
  color: #4a4a4a;
  margin-bottom: 5px;
  display: block;
}

.qrcode-name-label {
  font-size: 15px;
  font-weight: 800;
  color: #4a4a4a;
  margin-top: 10px;
  display: block;
}