/* overlay.css - طبقة الضباب الخلفية*/

.sheet-blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.sheet-blur-overlay.visible {
  opacity: 1;
}