

.status-bar {
  position: absolute;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 12px;
  color: #5f6368;
  border-top: 1px solid #e8eaed;
  z-index: 100;
}

.status-item {
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-label {
  color: #5f6368;
}

.status-value {
  color: #3c4043;
  font-weight: 500;
}

.status-item--color {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-color {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-color-preview {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #dadce0;
  background: transparent;
  flex-shrink: 0;
  margin: 0;
}

.status-label {
  white-space: nowrap;
  line-height: 1;
}

.status-color-code {
  font-weight: 500;
}

.status-color-hex {
  font-size: 11px;
  color: #5f6368;
}

.status-color-rgb {
  font-size: 11px;
  color: #5f6368;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .status-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 16px;
    gap: 6px 12px;
  }

  .status-item {
    margin-right: 8px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .status-bar {
    padding: 10px 18px;
  }
}
