.box5{
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 30px;
    padding-top: 10px;
    padding-left: 230px;
    padding-right: 30px;
    /*background-color: beige;*/
    /*border-radius: 20px;
    box-shadow: 10px 10px 5px rgba(135, 137, 138, 0.856);*/
    height: 100vh;
    width: 800px;
}

#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 60%;
  }
  
  #customers td, #customers th {
    
    padding: 8px;
  }

  
  #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #eca7ca;
    color: rgb(35, 94, 184);
  }

  .text_d{
    display: inline-block;
    text-decoration: none;
    background-color: aqua;
    padding: 8px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 5px 5px 2px lightblue; /* เงา */
  }
  .text_d:hover {
    background-color: lightblue;
    color: darkblue;
  }
  img{
    cursor: pointer; /* mouse*/
  }

  .image-container {
    position: relative;
    display: inline-block;
  }

  .image-container img {
    width: 200px;
    height: 140px;
    border: 5px solid #ddd; /* สีกรอบ */
    padding: 5px;
    box-shadow: 5px 5px 10px #888888; /* เงา */
    transition: transform 0.3s ease-in-out; /* เพื่อทำให้การขยายเรียบขึ้น */
  }

  .image-container img:hover {
    transform: scale(1.4); /* ขยายรูปเมื่อ hover */
  }

