html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
h1 {font-size: 1.5em;margin-bottom: 10px;}
p{font-size: 1em;line-height: 1.3em;margin-bottom: 10px;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}

/* Custom Font Definition */
@font-face {
    font-family: telegrama;
    src: url('telegrama_raw.otf');
}
/* Theme Variables */
:root {
    --color-background: #161b22;    /* Main background color */
    --color-pattern: #ffffff;       /* Pattern and accent elements */
    --color-container: #0d1117;     /* Container backgrounds */
    --color-header: #ff00ff;        /* Header backgrounds */
    --color-border: #003449;        /* Borders and highlights */
    --color-shadow:  0 -2px 10px rgba(255, 0, 255, 0.3),
        inset 0 0 0 1px rgba(0, 255, 255, 0.2); /* Shadow effects */
    --color-text: #00ffff;             /* Main text color */
}
/* ==========================================================================
   PRELOADER
   ========================================================================== */
   .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-image: url('Azura Website images/stock images/vecteezy_shinny-starry-night-animation-on-black-background-motion_46745798.gif');
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    background-size: cover;
    background-repeat: repeat;
}

.preloader-window {
    background-color: var(--color-container);
    border: 2px solid var(--color-border);
    box-shadow:
        0 -2px 10px rgba(255, 0, 255, 0.3),
        inset 0 0 0 1px rgba(0, 255, 255, 0.2);
    padding: 0;
    width: 300px;
}

.preloader-header {
    background-color: var(--color-header);
    border-bottom: 2px solid var(--color-border);
    padding: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preloader-header .header-title {
    font-weight: 500;
    margin-left: 5px;
    margin-top: 1px;
    padding-top: 4px;
}

.preloader-header .window-controls {
    display: flex;
    gap: 2px;
}

.preloader-header .window-button {
    display: flex;
    height: 15px;
    width: 15px;
    margin-top: 5px;
    margin-right: 5px;
    padding-bottom: 2.5px;
    background-color: var(--color-header);
    border: 2px solid var(--color-border);
    color: black;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.preloader-content {
    padding: 20px;
    text-align: center;
}

.loading-bar-container {
    background-color: var(--color-pattern);
    border: 2px solid var(--color-border);
    height: 20px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    background-color: var(--color-header);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.loading-text {
    margin-top: 10px;
    color: var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text)
}

/* Hide preloader when content is loaded */
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .preloader-window {
        width: 280px;
        margin: 0 1rem;
    }
    
    .preloader-content {
        padding: 15px;
    }
}

/* Touch device improvements */
@media (hover: none) {
    .preloader-header .window-button {
        min-width: 24px;
        min-height: 24px;
    }
}

/* Base Body Styles */
body {
    font-family: telegrama;
    min-height: 100vh;
    background-image: url('Azura Website images/stock images/20457673.gif');
}
/* Base Images */
img {
    max-width: 100%;
    height: auto;
}

img.profile {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
/* ==========================================================================
   LINK STYLES
   ========================================================================== */

a {
    color: #5a3d5a;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #5a3d5a;
    transition: width 0.3s ease;
}

a:hover {
    color: #694269;
}

a:hover::after {
    width: 100%;
}

a:active {
    transform: translateY(1px);
}

.link-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-container);
    border: 2px solid #5a3d5a;
    color: #5a3d5a;
    font-family: telegrama;
    box-shadow: 4px 4px var(--color-shadow);
    transition: all 0.2s ease;
}

.link-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px var(--color-shadow);
    color: #694269;
}

.link-button::after {
    display: none;
}
#templateLink {
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 20px;
    font-weight: bold;
    font-size: 15px;
    color: #30478c;
}
/* ===== DESKTOP BACKGROUND ===== */
#desktop {
    position: fixed;
    height: 100%;
    width: 100%;
	overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.window {
    position: absolute;
    border: 2px solid #21262d;
	border-radius: 5px;
	z-index: 1000;
    overflow: hidden;
    background-color: var(--color-background);
    max-height: fit-content;
    box-shadow: 
        2px 2px 0px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 0 1px rgba(0, 255, 255, 0.2);
}
.window.closed {
	display: none;
}
.window.minimizedWindow {
	display: none;
}
.window.fullSizeWindow {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 0;
    bottom: 32px !important;
}
.fullSizeWindow .ui-resizable-handle {
	display: none;
}
.windowHeader {
    background-color: #30363d;
    text-align: right;
    border-bottom: 2px solid #000;
    padding: 2px;
    cursor: move;
    height: 28px;
}
.activeWindow .windowHeader {
    background-color: #ff00ff;
}
.windowHeader > span {
    display: inline-block;
    cursor: pointer;
    border: 2px solid #000;
    margin-left: 4px;
    font-size: 19px;
    font-family: Arial Black, Helvetica, sans-serif;
    padding: 2px 10px;
    border-radius: 5px;
    line-height: 20px;
    width: 12px;
    height: 20px;
    position: relative;
    overflow: hidden;
}
.windowHeader > span:hover {
	background: rgba(255,255,255,0.3);
}
.windowHeader > span.winclose:hover {
	background: #f15454;
}
.windowHeader > span > span {
    display: inline-block;
    height: 8px;
    width: 10px;
    position: absolute;
    top: 6px;
    left: 10px;
}
.winminimize > span {
	border-bottom: 3px solid #000;
}
.winmaximize > span {
	border: 2px solid #000;
	border-top: 3px solid #000;
}
.winmaximize > span:nth-child(2) {
	display: none;
}
.fullSizeWindow .winmaximize > span:nth-child(1) {
	margin: 2px 0 0 -4px;
}
.fullSizeWindow .winmaximize > span:nth-child(2) {
    display: inline-block;
    top: 3px;
    left: 12px;
}
.wincontent {
    padding: 10px;
    min-width: 200px;
    min-height: 140px;
    margin: 2px;
	border-radius: 0 0 5px 5px;
    color: var(--color-text);
}
.windowHeader > strong {
    float: left;
    margin: 0px 3px 0 10px;
    line-height: 29px;
    font-size: 17px;
}
/* ==========================================================================
   START MENU & TASKBAR
   ========================================================================== */
/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 45px;
    left: 5px;
    width: 300px;
    background-color: var(--color-container);
    border: 2px solid var(--color-border);
    z-index: 1001;
}

.divider {
    height: 2px;
    margin: 4px 2px;
    background: #333;
    border-bottom: 1 solid #805980;
}

.menu-content {
    padding: 0;
    background-color: var(--color-container);
}

.menu-welcome {
    background-color: var(--color-header);
    padding: 8px 16px;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
}

.menu-items,
.menu-section {
    background-color: var(--color-pattern);
    padding: 10px;
    border: 2px solid var(--color-border);
    margin: 10px;
}

.menu-section {
    background-color: var(--color-container);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.menu-item:hover {
    background-color: var(--color-header);
    transform: translateX(4px);
}

.start-menu-overlay {
    display: none;
}

/* Ensure content wrapper fills width */
.start-menu-content .content-inner {
    width: 100%;
}

/* Optional: Adjust sidebar content width */
.start-menu .sidebar-content {
    width: 100%;
}

/* Taskbar */

.taskbar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 35px;
    background-color: var(--color-container);
    border-top: 2px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow:
        0 -2px 10px rgba(255, 0, 255, 0.3),
        inset 0 0 0 1px rgba(0, 255, 255, 0.2);
    color: #00ffff;
}

.taskbar-start {
    display: flex;
    align-items: center;
}

.start-button {
    padding: 4px 12px;
    background-color: var(--color-header);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    font-family: telegrama;
    cursor: pointer;
    box-shadow: 2px 2px var(--color-shadow);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.start-button:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px var(--color-shadow);
    background-color: var(--color-pattern);
}

.taskbarPanel {
    position: static;
    bottom: 1px;
    left: 10px;
    background-color: #30363d;
    border: 2px solid var(--color-border);
    z-index: 1001;
    padding: 4px 12px;
    font-family: telegrama;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px var(--color-shadow);
    transition: all 0.2s ease;
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    gap: 8px;
    transform: translateX(85px) translateY(4px);
}
.taskbar-time {
    background-color: var(--color-header);
    padding: 2px 8px;
    border: 2px solid var(--color-text);
    font-size: 0.8rem;
}
.taskbarPanel.activeTab {
	background: #ff00ff;
}
.taskbarPanel.minimizedTab {
	background: #30363d;
}
.taskbarPanel.minimizedTab:hover {
	background: #30363d;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}
.taskbarPanel:hover {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}
.taskbarPanel.closed {
	display: none;
}
#taskbar {
	position: absolute;
	height: 32px;
	bottom: 0;
	left: 0;
	right: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 5px;
    gap: 8px;
    overflow: auto;
}
.window-button.minimizeTab:hover {
	background: #DDD;
}
/* ===== DESKTOP ICONS ===== */
.desktop-icons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    z-index: 100;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    cursor: pointer;
    padding: 4px;
    border-radius: 0;
    transition: background-color 0.1s;
}

.icon-image {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg);
    border: 1px outset var(--button-bg);
    font-size: 16px;
    color: var(--text-color);
}

.icon:hover {
    text-shadow: 0 0 8px rgba(255, 0, 255, 1);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.icon-text {
    color: white;
    font-size: 14px;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    word-wrap: auto;
    max-width: 50px;
    line-height: 1.2;
}

#icon {
	position: absolute;
	z-index: 10;
	top: 20px;
	left: 20px;
}
/* ==========================================================================
   LIST STYLES
   ========================================================================== */

/* Base List Styles */
.styled-list {
    background-color: var(--color-container);
    border: 2px solid var(--color-border);
    box-shadow: 4px 4px var(--color-shadow);
    padding: 20px 25px 20px 40px;
    margin: 10px 0;
    width: fit-content;
    min-width: 250px;
    font-size: 0.95rem;
}

/* Unordered List Styles */
.styled-list.ul {
    list-style: none;
    padding-left: 15px;
}

.styled-list.ul > li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin: 8px 0;
    line-height: 1.5;
    font-weight: 500;
}

.styled-list.ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--color-pattern);
    border: 2px solid var(--color-border);
    transition: all 0.2s ease;
}

.styled-list.ul ul > li {
    position: relative;
    padding: 6px 0 6px 28px;
    margin: 4px 0;
    line-height: 1.4;
    font-weight: normal;
}

.styled-list.ul ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: var(--color-header);
    border: 2px solid var(--color-border);
    transition: all 0.2s ease;
}

/* Ordered List Styles */
.styled-list.ol {
    counter-reset: item;
    list-style: none;
    padding-left: 15px;
}

.styled-list.ol li {
    position: relative;
    padding: 5px 0 5px 35px;
    margin: 5px 0;
    counter-increment: item;
    line-height: 1.4;
}

.styled-list.ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: var(--color-header);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

/* List Hover Effects */
.styled-list li {
    transition: all 0.2s ease;
}

.styled-list li:hover {
    color: var(--color-border);
    transform: translateX(2px);
}

.styled-list.ul li:hover::before {
    background-color: var(--color-border);
    border-color: var(--color-border);
}

.styled-list.ul > li:hover::before {
    transform: translateY(-50%) rotate(45deg) scale(1.1);
}

.styled-list.ul ul > li:hover::before {
    transform: translateY(-50%) scale(1.1);
}

.styled-list.ol li:hover::before {
    background-color: var(--color-pattern);
    color: var(--color-border);
    transform: translateY(-50%) scale(1.1);
}
/* ==========================================================================
   SIDEBAR STYLES
   ========================================================================== */

.sidebar-container {
    position: relative;            
    width: 300px;
    flex-shrink: 0;
}

.sidebar {
    background-color: var(--color-container);
    padding: 10px;
    height: fit-content;
    position: sticky;
    top: 1.5rem;
    box-shadow: 4px 4px var(--color-shadow);
    border: 2px solid var(--color-border);
    box-shadow: 
        2px 2px 0px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 0 1px rgba(0, 255, 255, 0.2);
}

.sidebar-content ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.sidebar-content li {
    margin: 0;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 89%;
    color: var(--color-text);
}


.sidebar-content span {
    margin: 0;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sidebar-content li:last-child {
    border-bottom: none;
}

.sidebar-content a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    width: 100%;
}

.sidebar-content span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    width: 100%;
}

.sidebar-content-subnav {
    position: absolute;
    top: -2px;
    left: 100%;
    padding: 0.5em;
    width: 160px;
    display: none;
}

.sidebar-content-subnav a {
    background-color: var(--color-container);
    box-shadow: 4px 4px var(--color-shadow);
}

.sidebar-content-subnav li {
    margin: 0;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 89%;
    color: var(--color-text);
}

.sidebar-content a::after {
    font-family: telegrama;
    opacity: 0.7;
    background: none;
    height: auto;
    position: static;
    width: auto;
    bottom: auto;
}

.sidebar-content span::after {
    content: '>';
    font-family: telegrama;
    opacity: 0.7;
    background: none;
    height: auto;
    position: static;
    width: auto;
    bottom: auto;
}

.sidebar-content a::after {
    font-family: telegrama;
    opacity: 0.7;
    background: none;
    height: auto;
    position: relative;
    bottom: 0;
    transition: transform 0.2s ease;
}

.sidebar-content span::after {
    content: '>';
    font-family: telegrama;
    opacity: 0.7;
    background: none;
    height: auto;
    position: relative;
    bottom: 0;
    transition: transform 0.2s ease;
}

.sidebar-content-subnav a::after {
    font-family: telegrama;
    opacity: 0.7;
    display: block;
    background: none;
    height: auto;
    position: relative;
    bottom: 0;
    transition: transform 0.2s ease;
}

.sidebar-content a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-content a:hover::after {
    transform: translateX(3px);
}

.sidebar-content span:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-content span:hover::after {
    transform: translateX(3px);
}

.sidebar-content-subnav a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-content-submenu:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-content-submenu:hover .sidebar-content-subnav {
    display: block;
}

/*Demo styles BEGIN*/
#window0 {	top: 20px;	left: 240px;}
#window1 {	top: 400px; left: 120px;}
#window2 {	top: 250px; left: 300px;}
#window3 {	top: 125px; left: 420px;}
#window4 {	top: 125px; left: 420px;}
#window5 {	top: 125px; left: 420px;}
#window6 {	top: 125px; left: 420px;}
#window7 {	top: 125px; left: 420px;}
#window8 {	top: 20px;	left: 240px;}
#window9 {	top: 20px;	left: 240px;}
#window9 {	top: 20px;	left: 240px;}
#window0 .wincontent {	width: 660px; height: 310px;	}
#window1 .wincontent {	width: 1440px; height: 674px;	}
#window2 .wincontent {	width: 1000px; height: 750px;	}
#window3 .wincontent {	width: 1300px; height: 700px;	}
#window4 .wincontent {	width: 400px; height: 350px;	}
#window5 .wincontent {	width: 500px; height: 700px;	}
#window6 .wincontent {	width: 1000px; height: 500px;	}
#window7 .wincontent {	width: 400px; height: 350px;	}
#window8 .wincontent {	width: 1400px; height: 700px;	}
#window9 .wincontent {	width: 500px; height: 700px;	}

@media screen and (max-width:960px){
	#window0 {	left: 10px;	}
	#window6 {	left: 50px;	}	
}
@media screen and (max-width:770px){
	#window0 .wincontent {	width: 460px;	}
	#window2 {	left: 100px;	}
	#window1 {	top: 190px;	left: -5px;	}
}
@media screen and (max-width:540px){
#window0 .wincontent {	width: 230px; height: 200px;	}
#window6 .wincontent {
    width: 275px;
    height: auto;
}
#window6 {    top: 9px;    left: 10px;	}
#window2 {    left: -118px;	}
#window1 .wincontent {    width: auto;    height: 300px;	}
}

/* ==========================================================================
   MUSIC PLAYER
   ========================================================================== */
.player {
  position: fixed; inset: auto 0 35px 0;
  height: var(--bar-h); width: 100%;
  display: grid; 
  grid-template-columns: auto auto auto auto auto 1fr auto .09fr;
  align-items: center; gap: .75rem;
  padding: 0 .75rem;
  background: #161B33; 
  color: #F1DAC4;
  border: 1px solid var(--color-border);
  z-index: 1;
  font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.player button {
  all: unset; 
  background: transparent; 
  border: 0;
  color: #F1DAC4;
  font-size: 1.25rem;
  padding: .25rem .5rem;
  cursor: url('https://elsieeeyjd.github.io/elswhere-neocities/cursor/p-angel-heart/link-select.png'), pointer;
}

.track {
  display: grid; 
  gap: .25rem;
}

.title-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.title-wrap::before, .title-wrap::after {
  content: '';
  position: absolute;
  top: 0; width: 24px; height: 100%;
}

.title-wrap::before{ left:0;  background:linear-gradient(to right, var(--bg), transparent); }
.title-wrap::after { right:0; background:linear-gradient(to left,  var(--bg), transparent); }


.title {
  display: inline-block;
  white-space: nowrap;
  padding-inline: 8px;
  will-change: transform; 
}

.title.scroll{
  animation: marquee var(--duration, 12s) linear infinite;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(calc(-1 * var(--scroll-distance, 50%))); }
}

.progress {
  height: 6px;
  width: 100%;
  background: #A69CAC;
  border-radius: 999px; 
  cursor: url('https://elsieeeyjd.github.io/elswhere-neocities/cursor/p-angel-heart/link-select.png'), pointer;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #161B33;
  border-radius: inherit; 
}

.time{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  line-height:1;
  opacity:.9;
  color: #F1DAC4;
  margin-top: 2px;
  font-variant-numeric: tabular-nums; 
}

.playlist{
  position: absolute;
  top: 56px;
  right: 8px;
  left: auto;
  width: min(520px, 90vw);
  max-height: 40vh;
  overflow: auto;
  background: #0D0C1D;
  color: #F1DAC4;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  padding: 6px;
  z-index: 10000;
  transform-origin: 12px top;
  transition: opacity .15s ease, transform .15s ease;
  opacity: 0; 
  transform: scale(1);
}

.playlist[aria-open="true"]{
  opacity: 1; transform: scale(1);
}

/* each track row */
.playlist_item{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
}

.playlist_item[aria-selected="true"]::after{
  content:"now playing..."; 
  margin-right:.5rem; 
  color:#F1DAC4; 
  font-size: 10px;
  opacity:.9;
}

.playlist_item:hover,
.playlist_item[aria-selected="true"]{
  background: rgba(233,232,255,.18);
}
.playlist_title{
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: 14px;
}

.playlist_item { grid-template-columns: 1fr auto; }

.playlist_dur { font-size:12px; opacity:.8; }

#volume {
  width: 100px;

}