    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: #f5f7fa;
      color: #333;
      min-height: 100vh;
    }
    #fixedBottom { display: none ; }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    /* 헤더 */
    .page-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .page-header h1 {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }
    .page-header p {
      font-size: 16px;
      color: #666;
    }
    .page-header a {
      color: #2563eb;
      text-decoration: underline;
    }

    /* 검색 필터 */
    .search-section {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 24px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .search-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: flex-end;
    }
    .search-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .search-group label {
      font-size: 13px;
      font-weight: 600;
      color: #555;
    }
    .search-group select,
    .search-group input {
      padding: 10px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      min-width: 150px;
    }
    .search-group select:focus,
    .search-group input:focus {
      outline: none;
      border-color: #2563eb;
    }
    .btn {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-primary {
      background: #2563eb;
      color: #fff;
    }
    .btn-primary:hover {
      background: #1d4ed8;
    }
    .btn-secondary {
      background: #6b7280;
      color: #fff;
    }
    .btn-secondary:hover {
      background: #4b5563;
    }

    /* 결과 영역 */
    .result-section {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .result-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid #eee;
    }
    .result-count {
      font-size: 16px;
      color: #333;
    }
    .result-count strong {
      color: #2563eb;
      font-weight: 700;
    }

    /* 테이블 */
    .table-wrapper {
      overflow-x: auto;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    thead th {
      background: #f8fafc;
      padding: 14px 12px;
      text-align: left;
      font-weight: 600;
      color: #374151;
      border-bottom: 2px solid #e5e7eb;
      white-space: nowrap;
    }
    tbody td {
      padding: 14px 12px;
      border-bottom: 1px solid #f0f0f0;
      color: #4b5563;
    }
    tbody tr:hover {
      background: #f8fafc;
    }
    .status-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }
    .status-active {
      background: #dcfce7;
      color: #166534;
    }
    .status-stop {
      background: #fef3c7;
      color: #92400e;
    }
    .status-cancel {
      background: #fee2e2;
      color: #991b1b;
    }

    /* 페이징 */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .pagination button {
      padding: 8px 14px;
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.2s;
    }
    .pagination button:hover {
      background: #f3f4f6;
    }
    .pagination button.active {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb;
    }
    .pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* 로딩 */
    .loading {
      text-align: center;
      padding: 60px 20px;
      color: #666;
    }
    .loading-spinner {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 3px solid #e5e7eb;
      border-top-color: #2563eb;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 16px;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* 반응형 */
    @media (max-width: 768px) {
      .search-row {
        flex-direction: column;
      }
      .search-group select,
      .search-group input {
        width: 100%;
      }
    }
