/* CYBERPUNK THEME for File Browser */
:root {
  --textPrimary: #00ff41;    /* Matrix Green text */
  --textSecondary: #008f11;
  --surfacePrimary: #050505; /* Near Black background */
  --surfaceSecondary: #121212;
  --divider: #ff0055;        /* Neon Pink dividers */
  --actionMain: #00f0ff;     /* Cyan buttons */
}

body {
  font-family: "Courier New", Courier, monospace !important;
  background-color: var(--surfacePrimary) !important;
  color: var(--textPrimary) !important;
}

/* Header Bar */
header {
  background-color: #000 !important;
  border-bottom: 2px solid var(--actionMain);
}

/* Sidebar */
nav {
  background-color: #111 !important;
  border-right: 1px solid var(--divider);
}

/* Icons */
.material-icons {
  color: var(--actionMain) !important;
  text-shadow: 0 0 5px var(--actionMain);
}

/* Primary Action Buttons */
#dropdown button, button[aria-label="Download"], button[aria-label="Share"] {
  background-color: var(--divider) !important;
  color: #fff !important;
  border: 1px solid var(--actionMain);
  box-shadow: 2px 2px 0px var(--actionMain);
}

/* Selection Highlight */
div[role="button"]:hover {
  background-color: #1a1a1a !important;
  border: 1px solid var(--textPrimary);
}
