/* CWS Client Panel — Utility styles */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.acrylic-surface {
  backdrop-filter: blur(24px);
  background-color: rgba(255, 255, 255, 0.7);
}

.windows-glow {
  background: radial-gradient(circle at 70% 30%, rgba(0, 120, 212, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(163, 201, 255, 0.15) 0%, transparent 40%);
}

.ghost-border {
  border: 1px solid rgba(193, 199, 211, 0.15);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.windows-shape {
  position: absolute;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.4;
}

.no-scrollbar::-webkit-scrollbar { display: none; }

/* Status pills */
.status-running   { background: #dcfce7; color: #166534; }
.status-stopped   { background: #f3f4f6; color: #374151; }
.status-suspended { background: #fef9c3; color: #854d0e; }
.status-error     { background: #fee2e2; color: #991b1b; }
.status-provisioning { background: #dbeafe; color: #1e40af; }
.status-deleted   { background: #f3f4f6; color: #6b7280; }

@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.9)} }
.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
