.text {
	width: 50px;
	height: 4px;
	margin: -50;
	text-align: center;
	font-size: 10px;
	font-family: Arial, sans-serif;
}
.svg {
	width: auto; 
    height: 40px;  
	margin: 1;
	text-align: center;

}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 100vh;
  background: #f4f4f4;
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: width 0.4s ease;
  overflow: hidden;
}

/* เมื่อคลิก toggle แล้วขยายเมนู */
.navigation.open {
  width: 200px;
}

/* ปุ่ม toggle สีฟ้า */
.menu-toggle {
  width: 40px;
  height: 40px;
  background: #00bcd4;
  border-radius: 10px;
  margin: 20px 0;
  cursor: pointer;
}

/* รายการเมนู */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* เมนูแต่ละแถว */
.list-item {
  width: 100%;
  border-radius: 8px;
  margin: 4px 0;
  overflow: hidden;
}

/* ลิงก์ในเมนู */
.list-item a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 12px 20px;
  transition: 0.3s;
}

/* ไอคอน */
.list-item .icon {
  font-size: 20px;
  width: 40px;
  text-align: center;
}

/* เมนู active */
.list-item.active a {
  background: #4db6ac;
  color: white;
}

/* Hover effect */
.list-item a:hover {
  background: #00bcd4;
  color: #fff;
}
