/**
 * Stock formatter styles for ITPro
 */

/* Стиль для "Под заказ" (серый) */
.stock-status-out {
  color: #6c757d;
  font-weight: 500;
}
/*
.stock-status-out:before {
  content: "✕ ";
  font-weight: normal;
  color: #6c757d;
}
  */

/* Стиль для "Мало" (красный) */
.stock-status-low {
  color: #dc3545;
  font-weight: bold;
}

.stock-status-low:before {
  content: "⚠ ";
  font-weight: normal;
  color: #dc3545;
}

/* Стиль для "В наличии" (зеленый) */
.stock-status-in {
  color: #28a745;
  font-weight: 500;
}

.stock-status-in:before {
  content: "✓ ";
  font-weight: normal;
  color: #28a745;
}

/* Дополнительные стили для улучшения внешнего вида */
/*
.field-content {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
*/
.stock-status-out:hover,
.stock-status-low:hover,
.stock-status-in:hover {
  opacity: 0.8;
}