.erp-card {
      background: #fff;
      padding: 0;
      overflow: hidden;
      margin: 0;
      border: none;
      border-top: 1px solid #e2e8f0;
    }
    .search-section {
      margin-bottom: 30px;
      padding: 20px;
      background: #f7fafc;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }
    .search-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-bottom: 15px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      font-weight: 600;
      color: #2d3748;
      margin-bottom: 8px;
      font-size: 0.9rem;
    }
    .form-group input,
    .form-group select {
      padding: 10px 14px;
      border: 2px solid #e2e8f0;
      border-radius: 4px;
      font-size: 0.95rem;
      transition: all 0.3s;
      background: #fff;
    }
    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: #4299e1;
    }
    .btn-search {
      padding: 10px 24px;
      background: #4299e1;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      align-self: flex-end;
    }
    .btn-search:hover {
      background: #3182ce;
    }
    .table-container {
      overflow-x: auto;
      margin-top: 20px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
    }
    thead {
      background: #f7fafc;
      border-top: 2px solid #4299e1;
      border-bottom: 2px solid #e2e8f0;
    }
    th {
      padding: 14px 12px;
      text-align: center;
      font-weight: 600;
      color: #2d3748;
      font-size: 0.9rem;
      white-space: nowrap;
    }
    td {
      padding: 14px 12px;
      border-bottom: 1px solid #e2e8f0;
      color: #4a5568;
      font-size: 0.9rem;
      text-align: center;
    }
    tbody tr {
      cursor: pointer;
      transition: background 0.2s;
    }
    tbody tr:hover {
      background: #edf2f7 !important;
    }
    .amount-cell {
      text-align: right;
      font-weight: 600;
    }
    .status-badge {
      display: inline-block;
      padding: 4px 12px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .status-pending {
    }
    .status-partial {
    }
    .status-completed {
    }
    .no-data {
      text-align: center;
      padding: 60px 20px;
      color: #718096;
    }
    .no-data-icon {
      font-size: 3rem;
      margin-bottom: 15px;
      opacity: 0.5;
    }
    .summary-section {
      margin-top: 30px;
      padding: 20px;
      background: #f7fafc;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }
    .summary-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    .summary-item {
      padding: 15px;
      background: #fff;
      border-radius: 6px;
      border: 1px solid #e2e8f0;
      text-align: center;
    }
    .summary-label {
      font-size: 0.85rem;
      color: #718096;
      margin-bottom: 5px;
    }
    .summary-value {
      font-size: 1.3rem;
      font-weight: 700;
    }
    /* 상세 페이지 스타일 */
    .detail-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    .detail-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .detail-item.full-width {
      grid-column: 1 / -1;
    }
    .detail-item label {
      font-weight: 600;
      color: #2d3748;
      font-size: 0.95rem;
    }
    .detail-value {
      padding: 12px 16px;
      background: #f7fafc;
      border: 2px solid #e2e8f0;
      border-radius: 4px;
      font-size: 1rem;
      color: #4a5568;
      min-height: 20px;
    }
    .hidden {
      display: none;
    }
    .form-section {
      margin-bottom: 35px;
    }
    .section-title {
      font-size: 1.1rem;
      color: #2d3748;
      font-weight: 600;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #e2e8f0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title::before {
      content: '●';
      font-size: 0.8rem;
      color: #4a5568;
    }
    .form-actions {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #e2e8f0;
    }
    .btn {
      padding: 14px 40px;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .btn-primary {
      background: #4299e1;
      color: #fff;
      box-shadow: 0 2px 6px rgba(66, 153, 225, 0.3);
    }
    .btn-primary:hover {
      background: #3182ce;
      box-shadow: 0 4px 8px rgba(66, 153, 225, 0.4);
    }
    .btn-secondary {
      background: #fff;
      color: #4a5568;
      border: 2px solid #cbd5e0;
    }
    .btn-secondary:hover {
      background: #f7fafc;
      border-color: #a0aec0;
    }
    @media (max-width: 900px) {
      .content-wrapper {
        margin-left: 160px;
        padding: 30px 20px;
      }
      .card-body {
        padding: 30px 25px;
      }
      .search-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 600px) {
      .content-wrapper {
        margin-left: 0;
        padding: 20px 15px;
      }
      .card-body {
        padding: 25px 20px;
      }
      table {
        font-size: 0.85rem;
      }
      th, td {
        padding: 10px 8px;
      }
    }