/* แก้ไข: เพิ่ม position, top, width และ z-index */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* ยึดเมนูไว้กับหน้าจอ */
  top: 0;          /* ตำแหน่งบนสุด */
  width: 100%;     /* ความกว้างเต็มหน้าจอ */
  left: 0;         /* ชิดซ้าย */
  z-index: 1000;   /* ให้แสดงผลทับองค์ประกอบอื่น */
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

/* ทำให้เมนูเป็น responsive */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
