.link-button {
    background: none; /* 移除背景 */
    border: none; /* 移除邊框 */
    color: blue; /* 設定文字顏色 */
    text-decoration: underline; /* 加上底線 */
    cursor: pointer; /* 顯示指標 */
    font-size: inherit; /* 繼承字體大小 */
    font-family: inherit; /* 繼承字體 */
}

    .link-button:hover {
        color: darkblue; /* 移入時改變顏色 */
    }


.required:before {
    content: "*";
    color: red;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 5px; /* 每個 li 間隔 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); /* 四邊陰影 */
}

.menu-item a {
    display: block;
    padding: 12px 16px;
    color: rgb(0, 143, 143); /* 文字顏色 */
    font-weight: bold; /* 字體加粗 */
    text-decoration: none;
}

.menu-item a:hover {
    background-color: rgb(0, 120, 120); /* hover 效果 */
}


.menu-item:hover > a, .menu-item > a.active {
    background-color: rgb(0, 143, 143);
    color: rgb(255, 255, 255);
}