.code {
  display: inline-flex;
  align-items: center;
  background: #232828;
  border-radius: 6px;
  padding: 2px 4px;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 2px 0;
  color: #e0e0e0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: background 0.2s;
}

.code:hover {
  background: #313838;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  margin-left: 8px;
  outline: none;
}

.copy-btn .copy-icon {
  stroke: #b0b7b7;
  transition: opacity 0.2s;
}

.copy-btn .check-icon {
  stroke: #2ecc40;
  transition: opacity 0.2s;
}

.copy-btn:active .copy-icon {
  opacity: 0.7;
}

.dns-section {
  background: #232828;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  /* linke Rahmenlinie entfernt */
  border-left: none;
  max-width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #e7e7e7;
}

.dns-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  letter-spacing: 0.02em;
}

.dns-badge {
  background: #e67e22;
  color: #222;
  border-radius: 6px;
  font-size: 0.85em;
  padding: 0.2em 0.7em;
  margin-left: 0.5em;
  vertical-align: middle;
  font-weight: 600;
}

.dns-desc {
  font-size: 1em;
  color: #b1c3c3;
  margin-bottom: 1.1em;
}

.dns-group {
  margin-bottom: 1.2em;
}

.dns-group-title {
  font-size: 1.08em;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 0.4em;
  margin-top: 0.7em;
  letter-spacing: 0.01em;
}

.dns-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dns-row {
  display: flex;
  align-items: center;
  background: #222525;
  margin-bottom: 0.5em;
  border-radius: 8px;
  padding: 0.45em 0.9em;
  font-size: 1.04em;
  transition: background 0.2s;
}

.dns-row:hover {
  background: #2b3535;
}

.dns-label {
  flex: 0 0 60px;
  color: #e67e22;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-right: 1em;
}

.dns-value.code {
  font-family: 'Fira Mono', 'Consolas', monospace;
  background: #1c2222;
  color: #e7e7e7;
  border-radius: 5px;
  padding: 0.15em 0.5em;
  font-size: 0.98em;
  word-break: break-all;
}

.dns-value a {
  color: #e67e22;
  text-decoration: underline dotted;
}

.dns-feature-list {
  list-style: none;
  margin: 0 0 1.5em 0;
  padding: 0;
}

.dns-feature {
  display: flex;
  align-items: flex-start;
  background: #222525;
  border-radius: 8px;
  margin-bottom: 0.5em;
  padding: 0.5em 0.9em;
  font-size: 1.04em;
  color: #e7e7e7;
}

.dns-feature-icon {
  font-size: 1.25em;
  margin-right: 0.7em;
  flex-shrink: 0;
  color: #e67e22;
}

.dns-inner-list {
  list-style: disc inside;
  margin: 0.3em 0 0.3em 1.2em;
  padding: 0;
  color: #e7e7e7;
  font-size: 0.97em;
}

.dns-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dns-table {
  width: 100%;
  min-width: 370px;
  border-collapse: separate;
  border-spacing: 0;
  background: #222525;
  border-radius: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #e7e7e7;
  margin-bottom: 1em;
  font-size: 0.93rem;
  table-layout: fixed;
}

.dns-table th, .dns-table td {
  padding: 0.45em 0.25em;
  text-align: center;
  border-bottom: 1px solid #2b3535;
  vertical-align: middle;
  min-width: 36px;
  max-width: 70px;
  word-break: break-word;
}

.dns-table th {
  background: #232828;
  color: #e67e22;
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  border-bottom: 2px solid #2b3535;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dns-table td {
  font-size: 1.08em;
  vertical-align: middle;
}

.dns-table tr:last-child td {
  border-bottom: none;
}

.dns-table td {
  height: 2.3em;
  line-height: 1.4em;
  vertical-align: middle;
}

.dns-table td:empty {
  background: none;
}

@media (max-width: 700px) {
  .dns-table {
    font-size: 0.85em;
    min-width: 340px;
  }
  .dns-table th, .dns-table td {
    font-size: 1.05em;
    padding: 0.28em 0.12em;
    min-width: 28px;
    max-width: 46px;
  }
}

@media (max-width: 500px) {
  .dns-table {
    font-size: 0.8em;
    min-width: 320px;
  }
  .dns-table th, .dns-table td {
    font-size: 1em;
    padding: 0.17em 0.08em;
    min-width: 22px;
    max-width: 38px;
  }
}

