/* ---------- Base ---------- */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #f6f7fb;
    color: #1f2937;
  }
  
  /* ---------- Header ---------- */
  .header {
    padding: 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .header h1 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
  }
  
  /* ---------- Controls ---------- */
  .controls {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .controls input[type="search"] {
    padding: 10px 14px;
    min-width: 240px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #ffffff;
  }
  
  .controls input[type="search"]:focus {
    outline: none;
    border-color: #2563eb;
  }
  
  .controls button {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #2563eb;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
  }
  
  .controls button:hover {
    background: #1e40af;
  }
  
  .status {
    margin-left: auto;
    font-size: 13px;
    color: #6b7280;
  }
  
  /* ---------- Main ---------- */
  .main {
    padding: 24px;
  }
  
  /* ---------- Table ---------- */
  .tableWrap {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  thead {
    background: #f9fafb;
  }
  
  thead th {
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
  }
  
  tbody td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #111827;
  }
  
  tbody tr:hover {
    background: #f9fafb;
  }
  
  tbody tr:last-child td {
    border-bottom: none;
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 768px) {
    .controls {
      flex-wrap: wrap;
    }
  
    .controls input[type="search"] {
      min-width: 100%;
    }
  }
  