/* 1. 強制針對 textarea 元素與該 class 變色 */
textarea.ays-text-input, 
.ays-text-input {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important; /* 針對 Safari/Chrome 核心 */
    opacity: 1 !important; /* 確保沒有透明度干擾 */
}

/* 2. 針對輸入時的狀態也強制變黑 */
textarea.ays-text-input:focus {
    color: #000000 !important;
}

/* 隱藏內容區塊中的「編輯個人資料」連結 */
/* 適用於大多數 WordPress 標準結構 */
a[href*="profile.php"], 
a[href*="edit-account"] {
    display: none !important;
}

/* 進階：如果瀏覽器支援，連同前方的圓點 (li) 一起隱藏 */
li:has(a[href*="profile.php"]),
li:has(a[href*="edit-account"]) {
    display: none !important;
}