.service {
  display: grid;
  grid-template-columns: 260px 400px 900px;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 5px 6px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 8px;
}

.service h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-buttons {
  display: flex;
  gap: 8px;
}

.service-buttons button {
  width: 200px;
  text-align: center;
  padding: 6px 0;
  border: none;
  border-radius: 6px;
  background: #0078D7;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.service-buttons button:hover {
  background: #005fa3;
}

.service-buttons button.stop {
  background: #d32f2f !important;
}

.service-buttons button.stop:hover {
  background: #b71c1c !important;
}
