/* --- Workspace Cloud Underlay + Glass UI --- */

body{
  background: #FBFAFD;
}

/* Underlay image under everything */
.cloud-underlay{
  position: fixed;
  inset: 0;
  background-image: url("/images/wispy-sky.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  opacity: 0.55;              /* adjust 0.35 - 0.75 */
  z-index: 0;
  pointer-events: none;
}

/* Ensure workspace content is above the underlay */
.workspace-shell{
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Glass effect helper class (you can add class="glass-panel" anywhere) */
.glass-panel{
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(30,60,90,0.12);
}

/* Quick auto-glass overrides for common panel/card classes */
.card, .panel, .workspace-card, .sidebar-card, .tile, .box, .container-card, .content-card{
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
