im new to next js and tryna start off a hobby/recreational project thing but like when i tried to add a <div> replacing ther jsx stuuff in the Home() component function thing and put a few styles on it like margin background and color using a id selector it didnt update the styles of that element in the browser
//src/app/page.js
'use client'
import styles from "./page.module.css";
export default function Home() {
return (
<>
<div id='markdown'>test</div>{/*considering making it contentEditable but havent yet due to like potential issues with react stuff*/}
<button onClick={()=>{
// event handler to do markdown formatting
}}>Format</button>
</>
)
}``````css
/*page.module.css*/
/*just added this below to the css that was already there*/
#markdown {
margin: 2em auto;
background: black;
color: white;
}```