/* ═══ PIXIE TASKBAR THEME ═══
   Recolors the taskbar + Start button to match Pixie's palette
   (warm brown base, bright cyan accent — sampled from the wizard
   character art). Scoped ONLY to #taskbar/#start-btn/.tb-item/#tb-tray —
   everything else (windows, start menu, desktop) keeps the XP-Luna blue. */

#taskbar{
  background:linear-gradient(180deg,
    #8a6a48 0%, #6e4f30 3%, #5a3f22 6%, #55391e 10%,
    #4a3018 50%, #3c2814 85%, #241408 100%);
  border-top:1px solid #180d05;
}

#start-btn{
  background:linear-gradient(180deg,
    #b6fbf5 0%, #7fe8de 8%, #4fd0c4 40%,
    #34a89f 60%, #227d76 88%, #145048 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.45),
             2px 0 4px rgba(0,0,0,0.3);
}
#start-btn:hover{
  background:linear-gradient(180deg,
    #c8fffa 0%, #91f2e8 8%, #5fdcd0 40%,
    #3fbdb2 60%, #2c9187 88%, #185f56 100%);
}
#start-btn:active{ box-shadow:inset 0 2px 5px rgba(0,0,0,0.4); }

.tb-item{
  background:linear-gradient(180deg,#8a6c4c 0%,#6e5236 10%,#5a3f26 55%,#48331e 100%);
  border-color:#241408;
  border-top-color:#a3815c;border-left-color:#a3815c;
}
.tb-item:hover{
  background:linear-gradient(180deg,#9c7c58 0%,#7e6242 10%,#684a2e 55%,#543c24 100%);
}
.tb-item.active{
  background:linear-gradient(180deg,#241408 0%,#3a2814 10%,#4a3018 60%,#5a3f22 100%);
  box-shadow:inset 1px 1px 3px rgba(0,0,0,0.45);
  border-color:#140a04;
}

#tb-tray{
  background:linear-gradient(180deg,
    #503a22 0%, #3f2c18 4%, #362510 10%, #2c1d0c 90%, #1c1208 100%);
  border-left:1px solid #180d05;
  box-shadow:inset 1px 1px 0 rgba(255,255,255,0.15);
}
