/* =========================
   Notes Page Specifics
   ========================= */

/* 
   Everything is now handled in shared-styles.css.
   Add overrides here if you want this specific page
   to look different than the Feed or Network page.
*/


/* =========================
   my-notes.css
   ========================= */

/* 
   Most styles are now imported from shared-ui.css.
   We only need to set the width and flex behavior 
   to match the 'Streamers Feed' layout.
*/

.notesdir-layout .notesdir-main {
  /* Matches the width from your my-feed.css */
  max-width: 980px; 
  flex: 1;
}

/* 
   Since shared-ui.css sets .notes-feed to max-width: 820px,
   we need to override it here if you want the feed to utilize 
   the full 980px available in the main container.
*/
.notesdir-main .notes-feed {
  max-width: 100%;
}