/**
 * Стили для админ панели
 */

:root {
  --admin-primary: #c9481a;
  --admin-primary-hover: #a63915;
  --admin-sidebar-bg: #1e293b;
  --admin-sidebar-hover: #334155;
  --admin-border: #e2e8f0;
  --admin-bg: #f8fafc;
  --admin-card-bg: #ffffff;
  --admin-text: #1e293b;
  --admin-text-secondary: #64748b;
  --admin-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --admin-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --admin-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --admin-radius: 8px;
  --admin-radius-lg: 12px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--admin-border);
  background: transparent;
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--admin-text-secondary);
  transition: all 0.2s ease;
  margin-bottom: -1px;
  position: relative;
}

.tab-btn:hover {
  color: var(--admin-text);
  background: rgba(201, 72, 26, 0.05);
}

.tab-btn.active {
  color: var(--admin-primary);
  border-bottom-color: var(--admin-primary);
  font-weight: 600;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--admin-border);
}

.list-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--admin-text);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--admin-bg);
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, var(--admin-sidebar-bg) 0%, #1a1f2e 100%);
  color: #e2e8f0;
  padding: 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  box-shadow: var(--admin-shadow-md);
  z-index: 1000;
}

.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-header h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.sidebar-nav {
  padding: 12px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-size: 14px;
  font-weight: 500;
  margin: 2px 8px;
  border-radius: 6px;
}

.nav-item:hover {
  background-color: var(--admin-sidebar-hover);
  color: #ffffff;
  transform: translateX(2px);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(201, 72, 26, 0.15) 0%, transparent 100%);
  color: #ffffff;
  border-left-color: var(--admin-primary);
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Main content */
.admin-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  background: var(--admin-card-bg);
  padding: 24px 32px;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--admin-shadow);
  backdrop-filter: blur(10px);
}

.admin-header h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--admin-text);
  letter-spacing: -0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
  background: var(--admin-bg);
}

/* Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--admin-card-bg);
  padding: 28px;
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
  border: 1px solid var(--admin-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--admin-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  box-shadow: var(--admin-shadow-md);
  transform: translateY(-2px);
}

.stat-card:hover::before {
  transform: scaleY(1);
}

.stat-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--admin-text-secondary);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-value {
  font-size: 38px;
  font-weight: 700;
  color: var(--admin-text);
  line-height: 1.2;
}

.dashboard-section {
  background: var(--admin-card-bg);
  padding: 28px;
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
  margin-bottom: 24px;
  border: 1px solid var(--admin-border);
}

.dashboard-section h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--admin-text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--admin-border);
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tr:hover {
  background-color: var(--hover-color);
}

/* Forms */
.admin-form {
  padding: 28px;
  flex: 1;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--admin-text);
  font-size: 14px;
  line-height: 1.4;
}

.form-group input:not([type="file"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--admin-border);
  border-radius: 0;
  font-size: 15px;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--admin-text);
  font-family: inherit;
  outline: none;
  margin: 0;
}

.form-group input:not([type="file"]):hover,
.form-group select:hover,
.form-group textarea:hover {
  border-bottom-color: var(--admin-primary);
}

.form-group input:not([type="file"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border: 2px solid var(--admin-primary);
  border-radius: var(--admin-radius);
  padding: 10px 12px;
  background: var(--admin-card-bg);
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
}

.form-group input[type="file"] {
  padding: 12px 16px;
  border: 1.5px solid var(--admin-border);
  border-radius: var(--admin-radius);
  background: var(--admin-card-bg);
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-group input[type="file"]:hover {
  border-color: var(--admin-primary);
  background: rgba(201, 72, 26, 0.02);
}

.form-group input[type="file"]:focus {
  border: 2px solid var(--admin-primary);
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
  outline: none;
}

.form-group select {
  padding: 10px 24px 10px 0;
  border-bottom: 1px solid var(--admin-border);
  background: transparent;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select:focus {
  border: 2px solid var(--admin-primary);
  border-radius: var(--admin-radius);
  padding: 10px 36px 10px 12px;
  background: var(--admin-card-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9481a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-position: right 12px center;
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--admin-border);
}

.form-group textarea:focus {
  border: 2px solid var(--admin-primary);
  border-radius: var(--admin-radius);
  padding: 10px 12px;
  background: var(--admin-card-bg);
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
}

.form-group small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--admin-text-secondary);
  line-height: 1.5;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
}

/* Ingredients autocomplete */
.ingredient-input-wrap {
  position: relative;
}

.ingredient-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--admin-card-bg);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: var(--admin-shadow-md);
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
}

.ingredient-suggestion-item {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  color: var(--admin-text);
}

.ingredient-suggestion-item:hover {
  background: #f1f5f9;
}

.ingredient-suggestion-create {
  font-weight: 600;
  color: var(--admin-primary);
}

.ingredient-suggestion-empty {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--admin-text-secondary);
}

.ingredient-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid var(--admin-border);
  font-size: 12px;
  color: var(--admin-text);
}

.ingredient-chip button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--admin-text-secondary);
  font-size: 14px;
  line-height: 1;
  padding: 0;
}

.ingredient-empty {
  font-size: 12px;
  color: var(--admin-text-secondary);
  padding: 6px 0;
}

.ingredient-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ingredient-translate-btn {
  padding: 8px 12px;
  font-size: 12px;
}

.ingredient-table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--admin-border);
  justify-content: flex-end;
}

/* List */
.list-container {
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
  overflow: hidden;
  border: 1px solid var(--admin-border);
}

.list-item {
  padding: 18px 24px;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--admin-primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.list-item:hover {
  background: linear-gradient(90deg, rgba(201, 72, 26, 0.03) 0%, transparent 100%);
  padding-left: 28px;
}

.list-item:hover::before {
  transform: scaleY(1);
}

.list-item-info {
  flex: 1;
  min-width: 0;
}

.list-item-info h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--admin-text);
  line-height: 1.4;
}

.list-item-info p {
  margin: 0;
  font-size: 14px;
  color: var(--admin-text-secondary);
  line-height: 1.5;
}

.list-item-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}

.btn-icon {
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--admin-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  font-size: 18px;
  color: var(--admin-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.btn-icon:hover {
  background: rgba(201, 72, 26, 0.1);
  color: var(--admin-primary);
  transform: scale(1.1);
}

/* QR Code Modal */
.qr-modal-content {
  max-width: 420px !important;
  width: 90% !important;
}

.qr-preview {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: var(--admin-radius-lg);
  margin: 20px;
  border: 2px dashed var(--admin-border);
}

.qr-preview img {
  max-width: 240px;
  width: 100%;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--admin-shadow-md);
  background: white;
  padding: 12px;
}

.qr-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 20px 20px;
  flex-wrap: wrap;
}

.qr-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
  flex: 1;
  min-width: 100px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--admin-text-secondary);
}

.empty-state-icon {
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0.4;
  display: block;
}

.empty-state::before {
  content: '📭';
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* Error state */
.error-state {
  text-align: center;
  padding: 64px 20px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  border-radius: var(--admin-radius-lg);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Loading state */
.loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--admin-text-secondary);
}

.loading::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--admin-border);
  border-top-color: var(--admin-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Card */
.card {
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid var(--admin-border);
}

.card:hover {
  box-shadow: var(--admin-shadow-md);
  transform: translateY(-2px);
  border-color: var(--admin-primary);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius-lg);
  padding: 0;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--admin-shadow-lg);
  border: 1px solid var(--admin-border);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--admin-border);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--admin-text);
  letter-spacing: -0.3px;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--admin-text-secondary);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--admin-radius);
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: rotate(90deg);
}

/* Buttons improvements */
.btn {
  padding: 12px 24px;
  border-radius: var(--admin-radius);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--admin-shadow);
}

.btn-primary {
  background: var(--admin-primary);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: var(--admin-primary-hover);
  box-shadow: var(--admin-shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--admin-card-bg);
  color: var(--admin-text);
  border: 1.5px solid var(--admin-border);
}

.btn-secondary:hover {
  background: var(--admin-bg);
  border-color: var(--admin-primary);
  color: var(--admin-primary);
}

/* Mobile */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 200px;
  }

  .admin-main {
    margin-left: 200px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .admin-header h2 {
    font-size: 20px;
  }

  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header,
  .admin-form {
    padding: 20px;
  }

}

/* Поле выбора даты */
.date-range-input {
  padding: 10px 16px;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  background: white;
  min-width: 200px;
}

.date-range-input:focus {
  outline: none;
  border-color: #ff6b35;
}

/* Кнопка фильтра */
.btn-filter {
  padding: 10px 20px;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  background: white;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-filter:hover {
  background: #ff6b35;
  color: white;
}

.btn-filter.active {
  background: #ff6b35;
  color: white;
}

/* Панель фильтров */
.filter-panel {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 16px 0;
  overflow: hidden;
}

.filter-panel-content {
  display: flex;
  min-height: 400px;
}

/* Левая панель - категории */
.filter-categories {
  width: 200px;
  background: #f9f9f9;
  border-right: 1px solid #e0e0e0;
  padding: 16px 0;
}

.filter-category {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-size: 14px;
}

.filter-category:hover {
  background: #f0f0f0;
}

.filter-category.active {
  background: #fff3e0;
  border-right: 3px solid #ff6b35;
}

.filter-badge {
  background: #ff6b35;
  color: white;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.filter-clear-all {
  padding: 12px 20px;
  margin-top: auto;
  color: #666;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

.filter-clear-all:hover {
  color: #ff6b35;
}

/* Правая панель - опции */
.filter-options {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 500px;
}

.filter-placeholder {
  color: #999;
  text-align: center;
  padding: 40px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.filter-checkbox span {
  user-select: none;
}

/* Календарь */
.date-picker-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.date-picker-content {
  background: white;
  border-radius: 12px;
  padding: 20px;
  min-width: 350px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.date-picker-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  color: #666;
}

.date-picker-header button:hover {
  color: #ff6b35;
}

.date-picker-header select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 4px;
  font-size: 14px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  padding: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}

.calendar-day:hover:not(.empty) {
  background: #f0f0f0;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.start,
.calendar-day.end {
  background: #ff6b35;
  color: white;
  font-weight: 600;
}

.calendar-day.in-range {
  background: #fff3e0;
}

.date-picker-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* Table Status */
.table-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.status-free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.status-occupied {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.status-reserved {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.status-pending {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.status-confirmed {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.status-cancelled {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.status-completed {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
}

.status-select {
  padding: 8px 12px;
  border: 1.5px solid var(--admin-border);
  border-radius: var(--admin-radius);
  font-size: 13px;
  background: var(--admin-card-bg);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 130px;
  font-weight: 500;
  color: var(--admin-text);
}

.status-select:hover {
  border-color: var(--admin-primary);
  background: rgba(201, 72, 26, 0.05);
}

.status-select:focus {
  outline: none;
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
  background: var(--admin-card-bg);
}

/* Kanban Board */
.kanban-board {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0;
  height: calc(100vh - 200px);
  min-height: 600px;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: flex-start;
}

.kanban-board::-webkit-scrollbar {
  height: 12px;
}

.kanban-board::-webkit-scrollbar-track {
  background: var(--admin-bg);
  border-radius: 6px;
}

.kanban-board::-webkit-scrollbar-thumb {
  background: var(--admin-border);
  border-radius: 6px;
  border: 2px solid var(--admin-bg);
}

.kanban-board::-webkit-scrollbar-thumb:hover {
  background: var(--admin-text-secondary);
}

.kanban-column {
  display: flex;
  flex-direction: column;
  background: var(--admin-bg);
  border-radius: var(--admin-radius-lg);
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  height: calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  border: 1px solid var(--admin-border);
  box-shadow: var(--admin-shadow);
  overflow: hidden;
  flex-shrink: 0;
}

.kanban-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--admin-card-bg);
  border-bottom: 2px solid var(--admin-border);
  border-radius: var(--admin-radius-lg) var(--admin-radius-lg) 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.kanban-column[data-status="ACCEPTED"] .kanban-column-header {
  border-bottom-color: #f59e0b;
}

.kanban-column[data-status="COOKING"] .kanban-column-header {
  border-bottom-color: #ff6b35;
}

.kanban-column[data-status="READY"] .kanban-column-header {
  border-bottom-color: #10b981;
}

.kanban-column[data-status="CANCELED"] .kanban-column-header {
  border-bottom-color: #ef4444;
}

.kanban-column-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--admin-text);
}

.kanban-grip {
  color: var(--admin-text-secondary);
  font-size: 14px;
  cursor: grab;
  user-select: none;
}

.kanban-grip:active {
  cursor: grabbing;
}

.kanban-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  background: var(--admin-primary);
  color: white;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--admin-shadow);
}

.kanban-column-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  transition: background-color 0.2s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--admin-border) transparent;
}

.kanban-column-content.drag-over {
  background: rgba(201, 72, 26, 0.05);
  border: 2px dashed var(--admin-primary);
  border-radius: var(--admin-radius);
}

.kanban-column-content::-webkit-scrollbar {
  width: 10px;
}

.kanban-column-content::-webkit-scrollbar-track {
  background: var(--admin-bg);
  border-radius: 5px;
  margin: 4px 0;
}

.kanban-column-content::-webkit-scrollbar-thumb {
  background: var(--admin-border);
  border-radius: 5px;
  border: 2px solid var(--admin-bg);
  transition: background 0.2s ease;
}

.kanban-column-content::-webkit-scrollbar-thumb:hover {
  background: var(--admin-text-secondary);
}

.kanban-column-content::-webkit-scrollbar-thumb:active {
  background: var(--admin-primary);
}

/* Kanban Card */
.kanban-card {
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--admin-shadow);
  border: 1px solid var(--admin-border);
  cursor: grab;
  transition: all 0.2s ease;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kanban-card:hover {
  box-shadow: var(--admin-shadow-md);
  transform: translateY(-2px);
  border-color: var(--admin-primary);
}

.kanban-card.dragging {
  opacity: 0.5;
  transform: rotate(3deg);
  cursor: grabbing;
  box-shadow: var(--admin-shadow-lg);
}

.kanban-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--admin-border);
}

.kanban-card-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--admin-text);
  margin: 0;
  line-height: 1.3;
}

.kanban-card-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.kanban-card-info {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--admin-text-secondary);
  line-height: 1.6;
}

.kanban-card-info-item {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kanban-card-items {
  margin: 12px 0;
  padding: 12px;
  background: var(--admin-bg);
  border-radius: var(--admin-radius);
  border-left: 3px solid var(--admin-primary);
}

.kanban-card-item {
  font-size: 13px;
  color: var(--admin-text);
  margin-bottom: 6px;
  line-height: 1.5;
}

.kanban-card-item:last-child {
  margin-bottom: 0;
}

.kanban-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--admin-border);
}

.kanban-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--admin-primary);
}

.kanban-card-time {
  font-size: 12px;
  color: var(--admin-text-secondary);
}

.kanban-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.kanban-card-action-btn {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--admin-border);
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--admin-text);
}

.kanban-card-action-btn:hover {
  background: var(--admin-primary);
  color: white;
  border-color: var(--admin-primary);
}

.kanban-card-action-btn.view-all {
  background: transparent;
  border: none;
  color: var(--admin-primary);
  text-decoration: underline;
  padding: 4px 0;
}

.kanban-card-action-btn.view-all:hover {
  background: transparent;
  color: var(--admin-primary-hover);
}

/* Empty column state */
.kanban-column-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--admin-text-secondary);
  font-size: 14px;
}

.kanban-column-empty::before {
  content: '📋';
  display: block;
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.3;
}

/* Order Details Modal - New Design */
.order-details-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-details-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--admin-border);
}

.order-details-header-left {
  flex: 1;
}

.order-details-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--admin-text);
  margin: 0 0 8px 0;
}

.order-table-info {
  font-size: 16px;
  font-weight: 700;
  color: var(--admin-text);
  margin-bottom: 4px;
}

.order-date-time {
  font-size: 13px;
  color: var(--admin-text-secondary);
}

.order-details-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-status-badge-new {
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.order-payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--admin-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.order-items-section {
  margin-bottom: 20px;
}

.order-items-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--admin-text);
  margin-bottom: 16px;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-item-row-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--admin-border);
  gap: 16px;
}

.order-item-row-new:last-child {
  border-bottom: none;
}

.order-item-content {
  flex: 1;
  min-width: 0;
}

.order-item-main {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.order-item-qty {
  font-weight: 600;
  color: var(--admin-text);
  font-size: 14px;
}

.order-item-name-new {
  font-weight: 500;
  color: var(--admin-text);
  font-size: 14px;
  line-height: 1.4;
}

.order-item-modifiers-new {
  font-size: 12px;
  color: var(--admin-text-secondary);
  margin-left: 24px;
  margin-top: 4px;
}

.order-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.order-item-price-new {
  font-weight: 600;
  color: var(--admin-text);
  font-size: 14px;
  white-space: nowrap;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--admin-border);
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--admin-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
}

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.2);
}

.order-summary-section-new {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--admin-border);
}

.order-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--admin-text);
  margin-bottom: 16px;
}

.order-summary-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--admin-text);
}

.order-summary-total-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--admin-text);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--admin-border);
}

.order-summary-total-new span:last-child {
  color: var(--admin-primary);
  font-size: 20px;
}

.order-details-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--admin-border);
}

.order-details-actions .btn {
  flex: 1;
}

/* Order Details Modal - Old styles (keeping for compatibility) */
.order-details-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-details-section {
  margin-bottom: 0;
}

.order-details-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--admin-text);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--admin-border);
}

.order-details-card {
  background: var(--admin-bg);
  padding: 20px;
  border-radius: var(--admin-radius);
  border: 1px solid var(--admin-border);
}

.order-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--admin-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--admin-border);
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.order-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--admin-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-info-value {
  font-size: 14px;
  color: var(--admin-text);
  font-weight: 500;
}

.order-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  margin: 16px 0;
  border-top: 1px solid var(--admin-border);
  border-bottom: 1px solid var(--admin-border);
  flex-wrap: wrap;
}

.order-status-row .order-info-label {
  margin: 0;
}

.order-status-row select {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.order-status-row .btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.order-note {
  padding: 12px 0;
  margin: 12px 0;
  border-top: 1px solid var(--admin-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--admin-border);
}

.order-date-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Order Items */
.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--admin-border);
  gap: 16px;
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--admin-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.order-item-modifiers {
  font-size: 12px;
  color: var(--admin-text-secondary);
  margin: 6px 0 6px 16px;
  line-height: 1.5;
}

.order-item-meta {
  font-size: 12px;
  color: var(--admin-text-secondary);
  margin-top: 4px;
}

.order-item-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--admin-text);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Order Summary */
.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--admin-text);
  border-bottom: 1px solid var(--admin-border);
}

.order-summary-value {
  font-weight: 600;
  color: var(--admin-text);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0 0;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--admin-text);
  border-top: 2px solid var(--admin-primary);
}

.order-summary-total-value {
  font-size: 20px;
  color: var(--admin-primary);
}

/* Order Payments */
.order-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--admin-border);
  gap: 12px;
}

.order-payment-row:last-child {
  border-bottom: none;
}

.order-payment-row strong {
  font-weight: 600;
  color: var(--admin-text);
}

.payment-status {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--admin-bg);
  color: var(--admin-text-secondary);
  border: 1px solid var(--admin-border);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .kanban-board {
    flex-direction: column;
    height: auto;
    overflow-x: visible;
    overflow-y: visible;
  }

  .kanban-column {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 500px;
    margin-bottom: 20px;
  }

  .kanban-column-content {
    max-height: 400px;
  }

  .order-info-grid {
    grid-template-columns: 1fr;
  }

  .order-dates {
    grid-template-columns: 1fr;
  }

  .order-status-row {
    flex-direction: column;
    align-items: stretch;
  }

  .order-status-row select {
    max-width: 100%;
  }
}

/* Analytics Dashboard */
.dashboard-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
  border: 1px solid var(--admin-border);
}

.dashboard-filter label {
  font-weight: 600;
  color: var(--admin-text);
  font-size: 14px;
}

.date-input {
  padding: 10px 16px;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  font-size: 14px;
  color: var(--admin-text);
  background: var(--admin-card-bg);
  transition: all 0.2s ease;
}

.date-input:focus {
  outline: none;
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 3px rgba(201, 72, 26, 0.1);
}

.analytics-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.analytics-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--admin-radius);
  background: linear-gradient(135deg, rgba(201, 72, 26, 0.1) 0%, rgba(201, 72, 26, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--admin-primary);
  flex-shrink: 0;
}

.analytics-card .stat-info {
  flex: 1;
  min-width: 0;
}

.analytics-card .stat-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--admin-text-secondary);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.analytics-card .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--admin-text);
  line-height: 1.2;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

.qr-scans-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qr-scan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--admin-bg);
  border-radius: var(--admin-radius);
  border: 1px solid var(--admin-border);
}

.qr-scan-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--admin-text-secondary);
}

.qr-scan-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--admin-text);
}

.status-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-warning {
  background: rgba(234, 179, 8, 0.1);
  color: #ca8a04;
}

.status-info {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.status-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* Таблица столов */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--admin-card-bg);
  border-radius: var(--admin-radius);
  overflow: hidden;
  box-shadow: var(--admin-shadow);
}

.admin-table thead {
  background: #f8fafc;
  border-bottom: 2px solid var(--admin-border);
}

.admin-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: var(--admin-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--admin-border);
  color: var(--admin-text);
  font-size: 14px;
}

.admin-table tbody tr:hover {
  background: #f8fafc;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.btn-icon-small {
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--admin-text-secondary);
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-small:hover {
  background: var(--admin-border);
  color: var(--admin-text);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--admin-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--admin-primary-hover);
  text-decoration: underline;
}

.status-select-inline {
  display: none;
  padding: 4px 8px;
  border: 1px solid var(--admin-border);
  border-radius: 4px;
  background: var(--admin-card-bg);
  font-size: 13px;
  cursor: pointer;
  margin-left: 4px;
}

.status-select-inline:focus {
  outline: 2px solid var(--admin-primary);
  outline-offset: 2px;
}
