@charset "utf-8";
/* CSS Document */

.job-counter {
  display: inline-flex;
  align-items: center;
  background: #f0f2f5;
  border-radius: 20px;
  padding: 6px 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #4b4f56;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.1);
  cursor: default;
  user-select: none;
  transition: background-color 0.2s ease;
}

.job-counter:hover {
  background-color: #e1e3e8;
}

.job-counter-icon {
  margin-right: 8px;
  color: #1877f2; /* Facebook blue */
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Text number */
.job-count {
  font-weight: 700;
  color: #1877f2;
  margin-right: 4px;
}

/* Label next to number */
.job-label {
  text-transform: uppercase;
  font-weight: 600;
  color: #606770;
  font-size: 11px;
  letter-spacing: 0.05em;
}
