*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    font-family: 'Arial', sans-serif;
    cursor: grab;
}

#container {
    width: 100%;
    height: 100%;
    position: relative;
}

#controls {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 1000;
    max-width: 320px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 10px;
}

.control-group {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.control-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0cf;
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-container {
    margin: 12px 0;
}

.slider-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    color: #ddd;
}

.slider-container label span {
    color: #0cf;
    font-weight: bold;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #222;
    outline: none;
    transition: background 0.3s;
}
input[type="range"]:hover {
    background: #333;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0cf;
    cursor: pointer;
    border: 2px solid #000;
    box-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
    transition: transform 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}
input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0cf;
    cursor: pointer;
    border: 2px solid #000;
    box-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

.color-themes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.color-theme {
    width: 60px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 1px solid transparent;
}

.color-theme:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border-color: rgba(0, 204, 255, 0.7);
}

.color-theme.active {
    outline: 2px solid #0cf;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.7);
}

.color-theme::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, var(--color1) 0%, var(--color2) 50%, var(--color3, var(--color1)) 100%);
    left: 0;
    top: 0;
}

#info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ccc;
    font-size: 13px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-button {
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(0, 204, 255, 0.3);
    color: white;
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-button:hover {
    background: rgba(0, 204, 255, 0.25);
    border-color: #0cf;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
}

.toggle-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.toggle-icon::before, .toggle-icon::after {
    content: "";
    position: absolute;
    background-color: #0cf;
    transition: transform 0.3s ease-in-out;
    border-radius: 1px;
}

.toggle-icon::before {
    width: 100%;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.toggle-icon::after {
    width: 2.5px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.toggle-button.closed .toggle-icon::after {
    transform: translateX(-50%) rotate(0deg);
}

.stats-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    width: 200px;
}

.change-shape-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(20, 20, 30, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 204, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.change-shape-button:hover {
    background: rgba(0, 204, 255, 0.3);
    border-color: #0cf;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 204, 255, 0.3);
}

.change-shape-button:active {
    transform: translateY(0px) scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background: rgba(0, 204, 255, 0.4);
}
.change-shape-button span::before {
    content: "✧ ";
    font-size: 1.2em;
    margin-right: 4px;
    color: #0cf;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.stat-label {
    color: #aaa;
    margin-right: 10px;
}

.stat-value {
    color: #0cf;
    font-weight: bold;
    text-align: right;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s;
}

#loading h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(0, 204, 255, 0.5), 0 0 10px rgba(0, 204, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(0, 204, 255, 0.8), 0 0 30px rgba(255, 0, 170, 0.5), 0 0 40px rgba(0, 204, 255, 0.3); }
}

.loader-container {
    position: relative;
    width: 250px;
    height: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 204, 255, 0.3);
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    border-radius: 15px;
    background: linear-gradient(90deg,
        rgba(0, 204, 255, 0.8) 0%,
        rgba(255, 0, 170, 0.8) 50%,
        rgba(0, 204, 255, 0.8) 100%);
    transition: width 0.2s;
    position: relative;
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.7), 0 0 25px rgba(255, 0, 170, 0.5);
}

@keyframes gradientMove {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

.cosmic-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
}

@keyframes sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

#controls::-webkit-scrollbar {
    width: 8px;
}
#controls::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}
#controls::-webkit-scrollbar-thumb {
    background: #0cf;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.5);
}
#controls::-webkit-scrollbar-thumb:hover {
    background: #0af;
}

/* --- Audio UI --- */
.audio-row{
    display:flex; gap:10px; align-items:center; margin-bottom:10px; flex-wrap:wrap;
}
.pill-btn{
    background: rgba(20, 20, 30, 0.8);
    color:#fff; padding:8px 14px; border-radius:999px; border:1px solid rgba(0,204,255,0.4);
    cursor:pointer; font-weight:600; transition:all .2s;
}
.pill-btn:hover{ background: rgba(0, 204, 255, 0.25); border-color:#0cf; }
.file-label{ position:relative; display:inline-flex; align-items:center; gap:8px; }
.file-label input{ display:none; }
.file-label span{
    background: rgba(20, 20, 30, 0.8);
    border:1px solid rgba(0,204,255,0.4);
    padding:8px 14px; border-radius:999px; cursor:pointer; font-weight:600;
}
.file-label span:hover{ background: rgba(0, 204, 255, 0.25); border-color:#0cf; }
.band-grid{
    display:grid; grid-template-columns: 1fr 1fr; gap:8px; color:#ddd; margin-top:6px;
}
.now-playing{ margin-top:8px; color:#0cf; font-size:12px; opacity:0.9; }

.bind-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px;
    color:#ddd;
    margin-top:6px;
}
.hint{ font-size:11px; opacity:0.7; margin-top:6px; }

.player-row{
    display:flex; align-items:center; gap:10px; margin:8px 0 6px;
}
.player-row .time-display{ font-size:12px; color:#aaa; min-width:90px; text-align:center; }
#seekBar{
    -webkit-appearance:none; appearance:none; flex:1;
    height:6px; border-radius:3px; background:rgba(255,255,255,0.12); outline:none;
}
#seekBar::-webkit-slider-thumb{
    -webkit-appearance:none; appearance:none; width:12px; height:12px; border-radius:50%;
    background:#0cf; border:0; cursor:pointer;
}
#seekBar::-moz-range-thumb{ width:12px; height:12px; border-radius:50%; background:#0cf; border:0; cursor:pointer; }

#floatAmp, #floatSpeed{ width:100%; }

.inline-check{display:inline-flex;align-items:center;gap:8px;margin-top:4px;color:#ddd;}

/* Hide all UI overlays when toggled */
.ui-hidden .ui{ display:none !important; }
\n/* Hide cursor when UI is hidden (optional) */\n.ui-hidden.hide-cursor { cursor: none; }\n
.pill-select{padding:8px 10px;border-radius:999px;background:#111;border:1px solid #333;color:#eee;margin-left:8px;}


/* Morph Animations UI */
.morph-row { display:flex; gap:10px; align-items:center; margin:6px 0; }
.pill-select { width: 100%; padding: 8px 10px; border-radius: 20px; background: rgba(20,20,30,0.7); color:#fff; border:1px solid rgba(0,204,255,0.3); }
.pill-label { display:flex; align-items:center; gap:8px; margin-right: 10px; }


/* === Color Morph Group visual alignment === */
#colorMorphGroup .slider-container label {
  color: #9ad9ff;
  font-weight: 600;
}
#colorMorphGroup .cm-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
#colorMorphGroup input[type="color"] {
  width: 100%;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 204, 255, 0.25);
  background: rgba(20, 20, 30, 0.6);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.35);
  cursor: pointer;
}
#colorMorphGroup .actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
#colorMorphGroup .pill-btn {
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

/* Shape settings visual alignment */
.shape-settings-body .slider-container { margin-top: 6px; }
.shape-settings-body label { color: #9ad9ff; font-weight: 600; }


/* === Shape Transform & Presets styling === */
#shapeTransformGroup .actions, #shapePresetGroup .actions { display:flex; gap:10px; align-items:center; margin-top:6px; }
#shapeTransformGroup input[type="range"] { width: 100%; }
#shapePresetGroup input[type="text"] { width:100%; padding:6px 8px; border-radius:10px; border:1px solid rgba(0,204,255,0.25); background: rgba(20,20,30,0.6); color:#e6f6ff; }
#shapePresetGroup select { width:100%; padding:6px 8px; border-radius:10px; border:1px solid rgba(0,204,255,0.25); background: rgba(20,20,30,0.6); color:#e6f6ff; }


/* Hide cursor while orbit-dragging */
.dragging-cursor { cursor: none !important; }


/* Cursor hide rules */
#renderHost.dragging-cursor canvas { cursor: none !important; }


/* === Global Topbar (centered, compact, menu-matching) === */
#globalTopbar{
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 28px;
  background: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(0, 204, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  pointer-events: auto;
  max-width: min(900px, 92vw);
}

#globalTopbar label{
  color: #9ad9ff;
  font-weight: 600;
  margin-right: 6px;
}

#globalTopbar .divider{
  width: 1px;
  height: 20px;
  background: #666;
  opacity: 0.5;
}

.pill-button{
  background: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(0, 204, 255, 0.3);
  color: #fff;
  border-radius: 25px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.05s;
}

.pill-button:hover{
  background: rgba(0, 204, 255, 0.25);
  border-color: #0cf;
  box-shadow: 0 0 12px rgba(0, 204, 255, 0.35);
}

.pill-button:active{ transform: translateY(1px); }

/* Ensure selects match the menu pills */
.pill-select{
  background: rgba(20,20,30,0.7);
  border: 1px solid rgba(0, 204, 255, 0.3);
  color: #fff;
  border-radius: 25px;
  padding: 8px 10px;
  font-size: 14px;
  min-width: 190px;
  outline: none;
}



/* === Icon buttons === */
.pill-button.icon-btn, .pill-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-button .icon{
  width: 18px;
  height: 18px;
  display: inline-block;
  stroke: #9ad9ff;
  fill: none;
  stroke-width: 2;
  flex: 0 0 auto;
}

.pill-button:hover .icon{
  stroke: #0cf;
}

#globalTopbar .btn-text{
  line-height: 1;
}



/* === Icon-only Topbar buttons === */
#globalTopbar .pill-button .btn-text{ display:none !important; }
#globalTopbar .pill-button{ padding: 8px 10px; }

/* === Hide change shape button (bottom-right) === */
#changeShape{ display:none !important; }

/* === Right-side panel (under HUD) === */
\1top: 180px; /* under typical HUD height */
  right: 16px;
  width: 300px;
  max-height: calc(100vh - 140px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(20, 20, 30, 0.70);
  border: 1px solid rgba(0, 204, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 900; /* under topbar (1000), over canvas */
  pointer-events: auto;
}

.right-panel .panel-title{
  color: #9ad9ff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  text-transform: uppercase;
  opacity: .95;
}

.right-panel .panel-content{
  overflow: auto;
  padding-right: 4px;
}

/* Scrollbar tweak to keep it sleek */
.right-panel .panel-content::-webkit-scrollbar{ width: 8px; }
.right-panel .panel-content::-webkit-scrollbar-thumb{
  background: rgba(0, 204, 255, 0.3);
  border-radius: 8px;
}



/* === Gamepad Gear Icon === */
#gamepadGear{
  position: fixed;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(0, 204, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .2s, box-shadow .2s, transform .05s;
}
#gamepadGear:hover{ border-color:#0cf; box-shadow:0 0 10px rgba(0,204,255,.35); }
#gamepadGear:active{ transform: translateY(1px); }
#gamepadGear svg{ width:20px; height:20px; stroke:#9ad9ff; }
#gamepadGear:hover svg{ stroke:#0cf; }

/* === Gamepad Modal === */
#gamepadOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1200;
  display: none;
}
#gamepadModal{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 92vw);
  max-height: 80vh;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid rgba(0, 204, 255, 0.35);
  z-index: 1210;
  display: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gp-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 204, 255, 0.2);
  color:#9ad9ff;
  font-weight:700;
  letter-spacing:.3px;
  text-transform: uppercase;
}
.gp-close{
  background: transparent;
  border: none;
  cursor:pointer;
  color:#9ad9ff;
  font-size: 20px;
  line-height: 1;
}
.gp-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px;
}
.gp-card{
  background: rgba(10,10,16,0.6);
  border: 1px solid rgba(0, 204, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
}
.gp-card h4{ margin: 0 0 8px 0; color:#aee6ff; }
.gp-row{ display:flex; align-items:center; justify-content: space-between; gap: 10px; padding:6px 0; }
.gp-row label{ color:#9ad9ff; font-weight:600; }
.gp-row input[type="range"]{ width: 160px; }
.gp-row select{ min-width: 180px; }
.gp-footer{
  display:flex; align-items:center; justify-content:flex-end; gap: 8px;
  padding: 10px 14px; border-top: 1px solid rgba(0, 204, 255, 0.2);
}
.pill-button.small{ padding:6px 10px; border-radius:12px; font-size:12px; }



/* === Move Right Panel two thumbs lower (~200px from top) === */
.right-panel{ top: 200px; }

/* === Gear Icon (top-right) === */
.gp-gear{
  pointer-events: auto;
  position: fixed;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,30,0.7);
  border: 1px solid rgba(0, 204, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #9ad9ff;
  cursor: pointer;
  z-index: 1100;
}
.gp-gear svg{ width: 20px; height: 20px; stroke: currentColor; }
.gp-gear:hover{ border-color: #0cf; color:#0cf; box-shadow: 0 0 12px rgba(0, 204, 255, .35); }

/* === Gamepad Modal === */
.gp-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 3000;
}
.gp-modal{
  position: fixed;
  top: 80px; right: 16px;
  width: 560px; max-width: 96vw;
  background: rgba(20,20,30,0.9);
  border: 1px solid rgba(0, 204, 255, 0.35);
  border-radius: 16px;
  padding: 12px;
  z-index: 3010;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.gp-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 8px; }
.gp-header #gpTitle{ color:#9ad9ff; font-weight:800; letter-spacing:.4px; text-transform:uppercase; }
.gp-close{ background:transparent; border:none; color:#fff; font-size:18px; cursor:pointer; }
.gp-body{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; max-height: 60vh; overflow:auto; }
.gp-card{ border:1px solid rgba(0, 204, 255, .25); border-radius:12px; padding:10px; background: rgba(15,15,22,.6); }
.gp-card h4{ margin:0 0 6px 0; color:#c2ecff; font-weight:700; }
.gp-row{ display:flex; align-items:center; gap:8px; margin:6px 0; }
.gp-row label{ min-width: 160px; color:#9ad9ff; }
.gp-footer{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }

#gpMappingGrid{ display:grid; grid-template-columns: 140px 1fr; gap:8px; }

.gp-select, .gp-input{
  background: rgba(20,20,30,0.7);
  border: 1px solid rgba(0, 204, 255, 0.3);
  color: #fff;
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 14px;
  outline: none;
}

.pill-button.small{ padding:6px 10px; font-size: 13px; border-radius: 999px; }



/* Mapping grid label with alias */
.gp-btn-label{ font-weight:600;  color:#fff;}
.gp-btn-label{ font-size:14px; line-height:1.25;  color:#fff;}

.gp-modal .gp-select{ color:#fff; background:rgba(10,10,16,0.9); border:1px solid rgba(0,204,255,0.25); }
.gp-modal label{ color:#fff; }


#shakerButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

