/* 수취인 정보 스타일 */
  .recipient-info {
    padding: 8px;
  }
  
  .recipient-info-container {
    max-width: 320px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .recipient-detail {
    width: 100%;
    border-collapse: collapse;
  }
  
  .recipient-detail th {
    width: 60px;
    padding: 6px 8px;
    text-align: right;
    font-weight: 600;
    font-size: 12px;
    color: #666;
    vertical-align: top;
    border-bottom: 1px solid #eee;
  }
  
  .recipient-detail td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
    font-size:13px;   
  }
  
  .recipient-detail tr:last-child th,
  .recipient-detail tr:last-child td {
    border-bottom: none;
  }
  
  /* 출고중지 상태 스타일 */
  .hold-status-1 { color: #f39c12; font-weight: bold; } /* 신청완료 */
  .hold-status-2 { color: #3498db; } /* 심사중 */
  .hold-status-3 { color: #e74c3c; } /* 거부 */
  .hold-status-4 { color: #9b59b6; } /* 비용결제대기 */
  .hold-status-5 { color: #f39c12; } /* 입금확인중 */
  .hold-status-6 { color: #27ae60; } /* 결제완료 */
  .hold-status-7 { color: #34495e; } /* 출고중지대기 */
  .hold-status-8 { color: #c0392b; } /* API실패 */
  .hold-status-9 { color: #2ecc71; font-weight: bold; } /* 출고중지완료 */
  .hold-status-10 { color: #7f8c8d; } /* 취소 */
  
  /* 기존 테이블 레이아웃 최적화 */
  #sodr_list {
    table-layout: fixed;
  }
  
  #sodr_list th, 
  #sodr_list td {
    vertical-align: top;
  }
  
  .tbl_container {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    width: 100%;
  }

  /* 정렬 버튼 스타일 */
  .sort-btn {
    cursor: pointer;
    text-decoration: none;
    color: #333;
  }
  
  .sort-btn:hover {
    color: #0066cc;
  }
  
  .sort-btn.active {
    color: #0066cc;
    font-weight: bold;
  }

  /* 팝업 오버레이 스타일 */
  .status-change-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .status-change-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
  }

  .hold-method-exchange { color: #007bff; }
  .hold-method-refund { color: #dc3545; }
  .hold-reason-simple { color: #6c757d; }
  .hold-reason-defect { color: #dc3545; }
  .hold-reason-delay { color: #ffc107; }
  .hold-reason-error { color: #fd7e14; }