body {
    font-family: Times New Roman, sans-serif;
    margin: 0;
    padding: 0;
}

.floating-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}
#menuButton {
    background-color: rgba(200, 200, 200, 0.3); /* Làm nút trong suốt */
    color: green;
    border: none;
    padding: 10px; /* Thay đổi kích thước nút */
    font-family: Times New Roman, sans-serif;
    font-weight: bold;
    font-size: 14px; /* Thay đổi kích thước font của nút */
    cursor: pointer;
}
.menu-content {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
	width: 30vw;/* Giới hạn chiều ngang của menu = 30% chiều ngang cửa sổ view port*/
	min-width: 200px;
	max-height: 80vh; /* Giới hạn chiều cao của menu = 80% chiều cao cửa sổ view port*/
	
    overflow-y: auto; /* Thêm thanh cuộn dọc nếu nội dung vượt quá chiều cao */
}

.menu-content a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
}

.menu-content a:hover {
    background-color: #ddd;
}
.floating-search {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
}

input {
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: blue;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
