/* ===== VIP FILE MANAGER - GOLD BLACK THEME ===== */
:root {
  --main: #ffd700;
  --accent: #ff6b9d;
}
body {
  font-family: "Segoe UI", system-ui, sans-serif;
}
/* GOLD LOGO TEXT */
.branding, .logo {
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
/* GOLD BUTTONS */
button:not(.link) {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
  color: #ffd700 !important;
  border: 1px solid rgba(255,215,0,0.3) !important;
  border-radius: 8px !important;
}
button:not(.link):hover {
  background: linear-gradient(135deg, #ffd700, #ff6b9d) !important;
  color: #000 !important;
  box-shadow: 0 0 25px rgba(255,215,0,0.4) !important;
}
/* GOLD SELECTION */
.list-item.selected, .mosaic-item.selected {
  background: rgba(255,215,0,0.15) !important;
  border-color: #ffd700 !important;
  box-shadow: 0 0 15px rgba(255,215,0,0.3) !important;
}
/* CHECKBOX GOLD */
input[type="checkbox"]:checked {
  accent-color: #ffd700 !important;
}
/* EDITOR STYLING */
.ace_editor {
  border: 1px solid rgba(255,215,0,0.2) !important;
}
/* PANEL HEADERS */
.v-toolbar, .header {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a) !important;
  border-bottom: 1px solid rgba(255,215,0,0.15) !important;
}
/* GOLD LINKS */
a {
  color: #ffd700 !important;
}
/* FOOTER VIP */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a) !important;
  border-top: 1px solid rgba(255,215,0,0.2) !important;
  color: #ffd700 !important;
}
/* SCROLLBAR GOLD */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,215,0,0.6); }
/* GOLD DRAG OVER */
body.drop-active {
  border: 2px dashed #ffd700 !important;
}
