/* Replacement for GCP chips because custom colors are needed:
 *
 * <span class="bubble red square">Text</span>
 */

.bubble {
  padding: 2px 4px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  border-radius: 5px;
  text-transform: uppercase;
}

.bubble.square {
  display: inline-block;
  width: 21px;
  line-height: 2;
  text-align: center;
  padding: 0;
  height: 21px;
}

.bubble.red {
  color: #a50e0e;
  background-color: #fce8e6;
}

.bubble.green {
  color: #0d652d;
  background-color: #e6f4ea;
}

.bubble.yellow {
  color: #b05a00;
  background-color: #fef7e0;
}

.bubble.orange {
  color: #feefc3;
  background-color: #f29900;
}

.bubble.blue {
  color: #174ea6;
  background-color: #e8f0fe;
}

.bubble.dark-blue {
  color: #e8f0fe;
  background-color: #4285f4;
}

.bubble.gray {
  color: #f8f9fa;
  background-color: #9aa0a6;
}

.bubble.light-gray {
  color: #5f6368;
  background-color: #e8eaed;
}
