/* Vendetta Layout */
.bullsy-vendetta-card {
  max-width: 500px;
  margin: 0 auto;
}

.bullsy-vendetta-add-player input {
  padding: 8px;
  margin-right: 5px;
}

.bullsy-vendetta-add-player button {
  margin-right: 5px;
}

/* Player List */
.bullsy-vendetta-players div {
  padding: 6px 0;
  font-size: 15px;
}

/* Current Player */
.bullsy-vendetta-current-player {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Scorepad */
.bullsy-vendetta-scorepad {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 15px 0;
}

.bullsy-score-btn {
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* Action Buttons */
.vendetta-action,
.vendetta-target {
  display: block;
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  background: #222;
  color: #fff;
  border: none;
}

/* Band Styling */
.bullsy-band-miss { color: #888; }
.bullsy-band-graze { color: #ccc; }
.bullsy-band-hit { color: #4caf50; }
.bullsy-band-heavy { color: #ff9800; }
.bullsy-band-critical { color: #f44336; font-weight: bold; }

/* Result Box */
.bullsy-vendetta-result {
  font-size: 16px;
  min-height: 60px;
}