/* hide default "File Browser x.x.x / Help" credits line */
p.credits { display: none !important; }

/* match app background to the logo's background color (#38383A) */
:root.dark {
  --background: #38383A;
  --surfacePrimary: #38383A;
  --surfaceSecondary: #38383A;
}

/* bigger logo in the main header */
img[src*="logo"] {
  width: 52px !important;
  height: 52px !important;
}

/* login page logo — big, matching the "Peapes Files" title */
form img[src*="logo"] {
  width: 100px !important;
  height: 100px !important;
}

/* custom footer */
body::after {
  content: "Aigerati File Manager by Lance";
  position: fixed;
  left: 12px;
  bottom: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 9999;
  font-family: system-ui, sans-serif;
}

/* remove redundant "My files" nav item — app is scoped to a single root anyway */
button[aria-label="My files"] { display: none !important; }

/* discourage bulk-select delete workflow; single right-click delete only */
button[aria-label="Select multiple"] { display: none !important; }
