* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* colors */

:root {
  --color-background: #f5f5f5;
  --color-foreground: #fff;
  --color-gray-light: #e0e0e0;
  --color-gray: #666;
  --color-primary: #007bff;
  --color-primary-dark: #002853;
  --color-danger: #dc3545;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-border: #ddd;
  
  /* Typography variables */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Global animations */

*:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* body */

.body {
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  gap: 20px;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
  padding: 20px;
  padding-bottom: 80px;
}

/* buttons */

.button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  color: var(--color-gray);
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  background: var(--color-foreground);
  transition: background-color 0.2s, border-color 0.2s;
}

.button:hover {
  background: var(--color-gray-light);
  border-color: var(--color-gray);
}

.button:active {
  background: #ccc;
}

.button--primary {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-foreground);
}

.button--primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

.button--danger {
  background: var(--color-danger);
  border: 1px solid var(--color-danger);
  color: var(--color-foreground);
}

.button--danger:hover {
  background: #c82333;
  border-color: #c82333;
}

.button--small {
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

/* header */

.header {
  display: flex;
  gap: 12px;
  background: var(--color-foreground);
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

/* stats */

.stats {
  display: flex;
  gap: 24px;
  background: var(--color-foreground);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.stats__label {
  font-size: 12px;
  color: var(--color-gray);
  text-transform: uppercase;
  font-weight: 500;
}

.stats__value {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

/* main */

.main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-foreground);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

/* table */

.table {
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.table__head,
.table__body {
  display: flex;
  flex-direction: column;
}

.table__head {
  padding: 16px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--color-border);
  background: #f8f9fa;
}

.table__body {
  padding: 16px;
  padding-top: 0;
}

.table__row {
  display: grid;
  grid-template-columns: 40px 2fr 3fr 1fr 1fr 1fr 1fr 1fr 1.5fr 1.5fr 2fr 2fr 1.5fr 160px;
  border-bottom: 1px solid var(--color-border);
}

.table__row:hover:not(.table__row--empty):not(.table__row--editing) {
  background: #f8f9fa;
}

.table__row--empty {
  grid-template-columns: 1fr;
}

.table__row--editing {
  background: #fff3cd;
  border: 1px solid var(--color-warning);
  grid-template-columns: 40px 2fr 3fr 1.5fr 1.5fr 1fr 1fr 1.5fr 1.5fr 1.5fr 2fr 2fr 1.5fr 165px;
  margin: 4px 0;
}

.table__row--new {
  grid-template-columns: 40px 2fr 3fr 1.5fr 1.5fr 1fr 1fr 1.5fr 1.5fr 1.5fr 2fr 2fr 1.5fr 165px;
  background: #d1ecf1;
  border: 1px solid var(--color-primary);
  margin: 4px 0;
}

.table__cell {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 14px 8px;
  font-size: 13px;
}

.table__cell:nth-child(2) {
  min-width: 350px;
}

.table__cell--head {
  font-weight: 600;
  font-size: 12px;
  color: var(--color-gray);
  text-transform: uppercase;
}

.table__cell--center {
  justify-content: center;
}

.table__cell--actions {
  gap: 8px;
  justify-content: start;
  min-width: 160px;
  max-width: 160px;
}

.table__cell--editable {
  cursor: pointer;
}

.table__cell--editable:hover {
  background: var(--color-gray-light);
}

/* Инлайн-редактирование */

.table__cell-input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  background: var(--color-foreground);
  height: 34px;
  box-sizing: border-box;
}

.table__cell-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.table__cell-select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  background: var(--color-foreground);
  cursor: pointer;
  height: 34px;
  box-sizing: border-box;
}

.table__cell-textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  background: var(--color-foreground);
  resize: none;
  min-height: 34px;
  height: 34px;
  font-family: inherit;
  overflow: hidden;
  box-sizing: border-box;
}

/* empty state */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  color: var(--color-gray-200);
}

.empty-state p {
  font-size: 16px;
}

/* Кастомные модальные окна */

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.custom-modal.active {
  display: flex;
}

.custom-modal__content {
  background: var(--color-foreground);
  border-radius: 8px;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-border);
  text-align: center;
}

.custom-modal__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.custom-modal__icon--warning {
  color: var(--color-warning);
}

.custom-modal__icon--error {
  color: var(--color-danger);
}

.custom-modal__icon--success {
  color: var(--color-success);
}

.custom-modal__icon--info {
  color: var(--color-primary);
}

.custom-modal__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.custom-modal__message {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.custom-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.custom-modal__actions .button {
  min-width: 100px;
}

/* Плавающая панель сохранения */

.save-panel {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.save-panel.active {
  opacity: 1;
  visibility: visible;
}

.save-panel__content {
  display: flex;
  gap: 16px;
  background: var(--color-foreground);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-primary);
}

/* editing indicator */

.editing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #e3f2fd;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* status badges */

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge--available {
  background: #d4edda;
  color: var(--color-success);
}

.status-badge--order {
  background: #fff3cd;
  color: var(--color-warning);
}

.status-badge--info {
  background: #d1ecf1;
  color: var(--color-primary);
}

.status-badge--success {
  background: #d4edda;
  color: var(--color-success);
}

.status-badge--warning {
  background: #fff3cd;
  color: var(--color-warning);
}

.status-badge--unavailable {
  background: #f8d7da;
  color: var(--color-danger);
}

.status-badge--discontinued {
  background: var(--color-gray-light);
  color: var(--color-gray);
}

/* animations - оставляем только базовые */

/* checkbox styling */

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* responsive */

@media (max-width: 1200px) {
  .table__row {
    grid-template-columns: 40px 1.5fr 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.5fr 1.5fr 1fr 140px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
  }
  
  .stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .stats__item {
    padding: 8px;
  }
  
  .save-panel__content {
    flex-direction: column;
    border-radius: 12px;
    margin: 0 20px;
  }
  
  .table__row {
    grid-template-columns: 40px 1fr 1fr 1fr 1fr 80px 60px 60px 80px 80px 100px 100px 80px 80px;
    font-size: 12px;
  }
}

/* Delivery Section */

.delivery-section {
  background: var(--color-foreground);
  border-radius: 4px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.delivery-section__header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  background: #f8f9fa;
}

.delivery-section__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.delivery-section__toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.delivery-section__toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray);
  text-transform: uppercase;
}

.delivery-section__content {
  padding: 20px;
}

.delivery-section__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-section__title::before {
  content: '🚚';
  font-size: 20px;
}

.delivery-section__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

/* Delivery Table */

.delivery-table {
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-foreground);
}

.delivery-table__head,
.delivery-table__body {
  display: flex;
  flex-direction: column;
}

.delivery-table__head {
  background: #f8f9fa;
}

.delivery-table__row {
  display: grid;
  grid-template-columns: 2fr 3fr 1.5fr 180px;
  border-bottom: 1px solid var(--color-border);
}

.delivery-table__row:hover:not(.delivery-table__row--empty):not(.delivery-table__row--editing) {
  background: #f8f9fa;
}

.delivery-table__row--empty {
  grid-template-columns: 1fr;
}

.delivery-table__row--editing {
  background: #fff3cd;
  border: 1px solid var(--color-warning);
  margin: 4px;
}

.delivery-table__row--new {
  background: #d1ecf1;
  border: 1px solid var(--color-primary);
  margin: 4px;
}

.delivery-table__cell {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 12px;
  font-size: 13px;
  color: var(--color-gray);
}

.delivery-table__cell--head {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gray);
}

.delivery-table__cell--actions {
  gap: 8px;
  justify-content: start;
}

/* Delivery form inputs */

.delivery-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  background: var(--color-foreground);
  height: 36px;
  box-sizing: border-box;
}

.delivery-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.delivery-input--price {
  font-weight: 600;
  color: var(--color-primary);
}

/* Responsive для доставки */

@media (max-width: 768px) {
  .delivery-table__row {
    grid-template-columns: 1.5fr 2fr 1fr 100px;
    font-size: 12px;
  }
  
  .delivery-section__content {
    padding: 16px;
  }
  
  .delivery-section__header {
    padding: 16px;
  }
}

/* Кнопка волшебная палочка */
.input-with-magic {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-with-magic .table__cell-input {
  padding-right: 40px;
}

.magic-wand-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: white;
}

.magic-wand-btn:hover {
  background: #0056b3;
}

.magic-wand-btn:active {
  background: #004494;
}

/* Модалка выбора товаров */
.product-tree-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-tree-modal--show {
  opacity: 1;
}

.product-tree-modal__content {
  background: var(--color-foreground);
  border-radius: 8px;
  width: 90vw;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-border);
}

.product-tree-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.product-tree-modal__header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-tree-modal__create-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.product-tree-modal__create-btn:hover {
  background: var(--color-primary-dark);
}

.product-tree-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray);
}

.product-tree-modal__close {
  background: none;
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-gray);
}

.product-tree-modal__close:hover {
  background: var(--color-gray-light);
}

.product-tree-modal__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
}

.product-tree-modal__search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  background: var(--color-foreground);
  margin-bottom: 16px;
}

.product-tree-modal__search:focus {
  outline: none;
  border-color: var(--color-primary);
}

.product-tree-modal__tree {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 16px;
  background: #f8f9fa;
}

/* Элементы дерева */
.tree-category {
  margin-bottom: 8px;
}

.tree-category__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--color-foreground);
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.tree-category__header:hover {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.tree-category__toggle {
  font-size: 12px;
  width: 16px;
  text-align: center;
  color: var(--color-gray);
  transition: transform 0.2s;
}

.tree-category__toggle--clickable {
  cursor: pointer;
}

.tree-category__toggle--open {
  transform: rotate(90deg);
}

.tree-category__name {
  font-weight: 500;
  color: var(--color-gray);
  flex: 1;
}

.tree-category__count {
  font-size: 12px;
  color: var(--color-gray);
  background: var(--color-gray-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.tree-category__content {
  margin-top: 8px;
  padding-left: 16px;
}

/* Товары в дереве */
.tree-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  margin: 4px 0;
  background: var(--color-foreground);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.tree-product:hover {
  border-color: var(--color-primary);
}

.tree-product__info {
  flex: 1;
}

.tree-product__name {
  font-weight: 500;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.tree-product__price {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.tree-product__sku {
  font-size: 12px;
  color: var(--color-gray);
  display: flex;
}

.tree-product__sku div {
  margin-right: 15px;
}

.tree-product__select {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 12px;
}

.tree-product__select:hover {
  background: #0056b3;
}

.tree-product__select:active {
  background: #004494;
}

/* Результаты поиска */
.search-result {
  margin-bottom: 12px;
}

.search-result__category {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 4px;
  padding-left: 4px;
  font-weight: 500;
}

.search-no-results {
  text-align: center;
  color: var(--color-gray);
  padding: 40px 20px;
  font-style: italic;
}

/* Форма создания товара */
.create-product-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.create-product-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.create-product-form__header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray);
}

.create-product-form__back {
  background: none;
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--color-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.create-product-form__back:hover {
  background: var(--color-gray-light);
  border-color: var(--color-gray);
}

.create-product-form__form {
  flex: 1;
  overflow-y: auto;
}

.create-product-form__row {
  margin-bottom: 20px;
}

.create-product-form__row--inline {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.create-product-form__label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  gap: 6px;
}

.create-product-form__input,
.create-product-form__textarea,
.create-product-form__select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  background: var(--color-foreground);
  color: var(--color-gray);
  transition: border-color 0.2s;
}

.create-product-form__input:focus,
.create-product-form__textarea:focus,
.create-product-form__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Стили для категорий с полными путями */
.create-product-form__select option {
  padding: 6px 8px;
  line-height: 1.5;
}

.create-product-form__select option[data-level="0"] {
  font-weight: bold;
  color: #333;
  background-color: #f8f9fa;
}

.create-product-form__select option[data-level="1"] {
  color: #555;
  font-weight: 500;
}

.create-product-form__select option[data-level="2"] {
  color: #666;
}

.create-product-form__select option[data-level="3"] {
  color: #777;
}

.create-product-form__select option[data-level]:not([data-level="0"]) {
  font-size: 13px;
  padding-left: 12px;
}

.create-product-form__textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

.create-product-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.create-product-form__btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.create-product-form__btn--cancel {
  background: var(--color-gray-light);
  color: var(--color-gray);
  border: 1px solid var(--color-border);
}

.create-product-form__btn--cancel:hover {
  background: var(--color-border);
}

.create-product-form__btn--submit {
  background: var(--color-primary);
  color: white;
}

.create-product-form__btn--submit:hover {
  background: var(--color-primary-dark);
}

.create-product-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.create-product-form__btn:disabled:hover {
  background: var(--color-primary);
}

/* Адаптивность для модалки */
@media (max-width: 768px) {
  .product-tree-modal__content {
    width: 95vw;
    max-height: 90vh;
  }
  
  .product-tree-modal__header {
    padding: 16px 20px;
  }
  
  .product-tree-modal__title {
    font-size: 16px;
  }
  
  .product-tree-modal__body {
    padding: 20px;
  }
  
  .tree-product {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .tree-product__select {
    margin-left: 0;
    align-self: flex-end;
  }
  
  .create-product-form__row--inline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .create-product-form__actions {
    flex-direction: column;
  }
  
  .create-product-form__btn {
    flex: none;
  }
}

/* Стили для бейджей вида оплаты */
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-badge--card {
  background: #e3f2fd;
  color: #1976d2;
  border: 1px solid #bbdefb;
}

.payment-badge--cash {
  background: #f3e5f5;
  color: #7b1fa2;
  border: 1px solid #ce93d8;
}

/* Стили для селекта вида оплаты */
.payment-type-select {
  min-width: 120px;
}

.payment-type-select option {
  padding: 8px;
}

/* Suppliers inline (в подвале строки товара) */
.suppliers-inline {
  width: 100%;
  padding: 6px 0;
}

.suppliers-inline--empty {
  color: var(--color-gray);
  padding: 10px 0;
}

.suppliers-inline__title {
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--color-gray);
}

.suppliers-inline__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.suppliers-inline__row {}

.suppliers-inline__cell {
  padding: 6px 8px;
  font-size: 13px;
  color: var(--color-gray);
}

.suppliers-inline__cell--head {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  border-bottom: 1px solid #eee;
}

.suppliers-inline__cell--num {
  text-align: right;
  white-space: nowrap;
}
