body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  h1 {
    color: #333;
  }
  
  table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
  }
  
  th {
    background-color: #007bff;
    color: white;
  }
  
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  tr:hover {
    background-color: #f1f1f1;
  }
  
  .btn-edit {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #17a2b8; /* สีฟ้าอ่อน */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .btn-edit:hover {
    background: #138496; /* สีฟ้าเข้มเมื่อ hover */
  }
  
  .btn-edit:active {
    background: #117a8b; /* สีฟ้าเข้มสุดเมื่อคลิก */
  }