.tabs {
  width: 100%;
}
.tab-nav {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #ccc;
  cursor: pointer;
}
.tab-nav li {
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-bottom: none;
  background-color: #f9f9f9; /* hellgrauer Hintergrund für alle */
  transition: background 0.3s;
}

.tab-nav li:hover {
  background-color: #e0e0e0; /* dunkleres Grau bei Hover */
}

.tab-nav li.active {
  background-color: #ffffff; /* aktiver Tab bleibt weiß */
  border: 1px solid #ccc;
  border-bottom: 2px solid white;
  font-weight: bold;
}

.tab-nav li.active {
  border: 1px solid #ccc;
  border-bottom: 2px solid white;
  font-weight: bold;
}
.tab {
  display: none;
  padding: 1rem 0;
}
.tab.active {
  display: block;
}
.infos {
  padding: 10px;
  background-color: #e0ffe0;
  border: 1px solid #b2d8b2;
  border-radius: 5px;
  margin-bottom: 1em;
}
.whitelist-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.whitelist-table th, .whitelist-table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
}

.whitelist-table thead {
  background-color: #f5f5f5;
  font-weight: bold;
}

.whitelist-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.whitelist-table tr:hover {
  background-color: #eef5ff;
}
.bot-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.bot-info-table th,
.bot-info-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.bot-info-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.bot-info-table tr:nth-child(even) {
  background-color: #fafafa;
}

.bot-info-table tr:hover {
  background-color: #f5f5f5;
}

.bot-info-table td:last-child {
  font-style: italic;
}

