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 */
}

/* Tabelle */
.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.table th {
  background-color: #f8f8f8;
  color: #555;
  font-weight: bold;
}

.table tbody tr:hover {
  background-color: #f9f9f9;
}

.table td a {
  color: #007bff;
  text-decoration: none;
}

.table td a:hover {
 text-decoration: none !important;
  color: #b5052e; 
}

/* 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 */
}