body {
    margin: 0;
    font-family: "Noto Sans TC", sans-serif;
    background-color: #a2effe;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }
  
  .title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  input,
  select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
  }
  
  .btn {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #1d4ed8;
  }
  
  .pagination-controls{
    display: flex;
    justify-content: center; /* 按鈕置中 */
    align-items: center;
    gap: 1rem;             /* 按鈕之間留間距 */
    margin: 1rem auto;
    padding: 0.5rem 0;
  }

  .pagebtn{
    background-color: beige;
    color: black;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
  }

  .pagebtn:hover{
    background-color: antiquewhite;
  }

  .download-button{
    display: flex;
    justify-content: center; /* 按鈕置中 */
  }

  .center {
    display: flex;
    justify-content: center;
  }
  
  .results {
    margin-top: 2rem;
  }
  
  .placeholder {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
  }
  