.custompwinput-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.custompwinput-empty {
  font-size: 14px;
  color: #777;
  padding: 6px 4px;
  font-family: Verdana;
}

/* --- Karte (Live-Ansicht) --- */
.custompwinput-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #404040;
  border-radius: 10px;
	
  overflow: hidden;
  background: #fff;
  width: 100%;
  font-family: Verdana, sans-serif;
}
.custompwinput-fields {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.custompwinput-row {
  display: flex;
  align-items: center;
  height: 50px;
  padding-right: 6px;
  min-width: 0;
  width: 100%;
}
.custompwinput-fields > .custompwinput-row + .custompwinput-row {
  border-top: 1.5px solid #262626;

}
@media (min-width: 600px) {
  .custompwinput-fields {
    flex-direction: row;
  }
  .custompwinput-fields > .custompwinput-row {
    flex: 1 1 50%;
    width: 50%;
    min-width: 0;
  }
  .custompwinput-fields > .custompwinput-row + .custompwinput-row {
    border-top: 0;
    border-left: 1.5px solid #262626;
	 
  }
}
.custompwinput-icon {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a9201f;
}
.custompwinput-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.custompwinput-divider {
  width: 1px;
  height: 24px;
  background: #404040;
  flex-shrink: 0;
  opacity: 0.25;
}
.custompwinput-value {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  font-size: 14px;
  color: #404040;
  font-family: Verdana;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.25s ease, color 0.2s ease;
  font-weight: 500;
}
.custompwinput-value.fading { opacity: 0; }
.custompwinput-value.copied { color: #a9201f; }
.custompwinput-icon-btn {
  padding: 0 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.custompwinput-icon-btn svg {
  width: 15px;
  height: 15px;
  stroke: #bbb;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s, opacity 0.25s ease;
}
.custompwinput-icon-btn:hover svg { stroke: #404040; }
.custompwinput-icon-btn.copied svg { stroke: #a9201f; }
.custompwinput-copy-btn {
  transition: opacity 0.25s ease, width 0.25s ease, padding 0.25s ease;
}
.custompwinput-copy-btn.hidden {
  opacity: 0;
  pointer-events: none;
  width: 0;
  padding: 0;
  overflow: hidden;
}

/* --- Editor-/Bearbeitungsansicht (im Nachrichten-Editor) --- */
.custompwinput-config {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custompwinput-entry-editor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
}
.custompwinput-input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: Verdana, sans-serif;
  font-weight: bold;
  color: #404040;
  transition: border-color 250ms ease;
}
.custompwinput-input::placeholder {
  font-weight: normal;
  opacity: 0.5;
}
.custompwinput-input:focus {
  border-color: #a9201f;
  outline: none;
}
@media (max-width: 800px) {
  .custompwinput-entry-editor-row {
    grid-template-columns: 1fr;
  }
}