h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
}

.success-message {
  padding: 10px;
  background-color: #dff0d8;
  color: #3c763d;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}

/* Formular-Button */
.reset-form {
  margin-bottom: 20px;
}

.reset-form button {
  background-color: #3498db;       /* Helles Blau */
  color: #fff;                     /* Weißer Text */
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reset-form button:hover {
  background-color: #2980b9;       /* Dunkleres Blau beim Hover */
  transform: scale(1.05);          /* Kleiner Zoom-Effekt */
}
.reaction-table {
  width: 60%;
  border-collapse: collapse;
  margin-bottom: 100px;
}

.reaction-table th,
.reaction-table td {
  border: 1px solid #ccc;
  padding: 6px 10px;
  text-align: center;
}

/* Sticky Header */
.reaction-table thead th {
  position: sticky;
  top: 1px; /* Höhe der Navbar plus Puffer */
  background-color: #f0f0f0;
  z-index: 2;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Optional: etwas Schatten beim Schweben */
.reaction-table thead th:hover {
  background-color: #e9ecef;
}

/* Responsiv und mittig */
@media (max-width: 992px) {
  .reaction-table {
    width: 100%;
  }
}

/* Bild in der Vorschau */
.preview-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.ld-btn {
  padding: 8px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  background-color: #333333;
  color: white;
  transition: background-color 0.3s ease;
}

/* Like Button */
.ld-btn.like:hover {
  background-color: #a5d6a7; /* Hellgrün */
}

/* Dislike Button */
.ld-btn.dislike:hover {
  background-color: #ef9a9a; /* Hellrot */
}

/* Aktiver Zustand */
.ld-btn.active.like {
  background-color: #4caf50; /* Grün */
  color: white;
}

.ld-btn.active.dislike {
  background-color: #f44336; /* Rot */
  color: white;
}
a {
  text-decoration: none !important;
  color: #333333; /* Linkfarbe */
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  color: #a6a8ab; /* Farbe beim Hover, optional anpassbar */
}