/* Allgemeine Stile für die gesamte Anwendung */
body {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

header, footer {
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

/* Kartenstile für Nodes */
.card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  color: #ffffff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #cccccc;
}

.card-footer {
  text-align: right;
}

/* Pagination-Buttons */
.pagination-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-controls button {
  background-color: #333;
  border: none;
  color: #ffffff;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.pagination-controls button:hover {
  background-color: #444;
}

/* Icons in den Karten */
.icon {
  margin-right: 8px;
}

/* Tabellenstile */
.table {
  width: 100%;
  margin-bottom: 20px;
  color: #ffffff;
  background-color: #1e1e1e;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 12px;
  text-align: left;
  border-top: 1px solid #333;
}

.table thead th {
  background-color: #333;
  color: #ffffff;
}

.table tbody tr:nth-child(even) {
  background-color: #2a2a2a;
}



.message-card {
  width: 100%; /* Volle Breite der Cards */
  margin: 10px 0;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message-card-body {
  padding: 15px;
}

.message-card-footer {
  background-color: #333;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #444;
}

.message-card-footer a {
  color: #b3e5fc;
  text-decoration: none;
}

.message-card-footer a:hover {
  text-decoration: underline;
}