/* ===== SHOUTBOX (angepasst an Global Styles) ===== */

.shoutbox-form * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Allgemeines Layout */
.shoutbox-flex {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 6px;
}

/* Formular */
.shoutbox-form {
  background: #eeeeee;
  padding: 8px;
  font-family: Verdana, sans-serif;
  font-size: 10px;
}

/* Eingabefelder */
.shoutbox-form input {
  width: 100%;
  display: block;
  background: #fff;
  border: none;
  padding: 6px 8px;
  font-size: 10px;
  font-family: Verdana, sans-serif;
  color: #000;
}

.shoutbox-form input::placeholder {
  color: #999;
}

/* Button */
.shoutbox-form button {
  background: #555;
  color: #fff;
  padding: 6px 10px;
  border: none;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: Verdana, sans-serif;
  cursor: pointer;
}

.shoutbox-form button:hover {
  background: #444;
}

/* Einträge */
.shoutbox-entry {
  font-family: Verdana, sans-serif;
  font-size: 10px;
  padding: 8px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.5);
  color: #444;
}

.shoutbox-entry:nth-child(odd) {
  background: rgba(255, 255, 255, 0.6);
}

.shoutbox-entry:nth-child(even) {
  background: rgba(238, 238, 238, 0.6);
}

/* Infoleiste (Name + Datum) */
.shoutbox-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-family: Verdana, sans-serif;
  color: #666;
}

.shoutbox-name {
  font-weight: bold;
  color: #515151;
}

.shoutbox-date {
  color: #777;
  font-size: 9px;
}

/* Nachrichtentext */
.shoutbox-text {
  margin-bottom: 6px;
  line-height: 1.4;
  font-family: Verdana, sans-serif;
  color: #444;
}

/* Aktionen */
.shoutbox-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: Verdana, sans-serif;
  font-size: 9px;
}

.shoutbox-actions a {
  text-decoration: none;
  color: #777;
}

.shoutbox-actions a:hover {
  color: #999;
}

.shoutbox-actions a.shoutbox-delete {
  color: #e24f4f;
}

/* Adminlinks */
.shoutbox-admin-links {
  font-size: 8px;
  color: #777;
}

/* Feedback-Meldungen */
.shoutbox-messages {
  margin-bottom: 8px;
  font-family: Verdana, sans-serif;
  font-size: 10px;
}

.shoutbox-messages .shoutbox-success {
  background: #3ba579;
  color: #fff;
  padding: 6px;
}

.shoutbox-messages .shoutbox-error {
  background: #c52f2f;
  color: #fff;
  padding: 6px;
}

.shoutbox-messages .shoutbox-delete {
  background: #eeeeee;
  color: #777;
  padding: 6px;
}

/* Unsichtbares Honeypot-Feld */
.shoutbox-lastname {
  display: none !important;
}
