/* Базовые стили модального окна */
#orderStatusModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Стили для статусов (соответствуют статусам из PHP) */
  .status-badge-1 { background-color: #fff3cd; color: #856404; } /* Принят */
  .status-badge-2, 
  .status-badge-9 { background-color: #d1ecf1; color: #0c5460; } /* В ремонте */
  .status-badge-3 { background-color: #f8d7da; color: #721c24; } /* Ожидает */
  .status-badge-4 { background-color: #d4edda; color: #155724; } /* Готов */
  .status-badge-5,
  .status-badge-8 { background-color: #cce5ff; color: #004085; } /* Выдан */
  .status-badge-7 { background-color: #f5c6cb; color: #721c24; } /* Отказ */
  .status-badge-15,
  .status-badge-16 { background-color: #e2e3e5; color: #383d41; } /* Согласование */
  
  /* Анимации */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  #statusResult {
    animation: fadeIn 0.3s ease-out;
  }