.configurable_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 1;
    pointer-events: none;
    
  }
  
  .configurable.active {
    position: relative;
    z-index: 2;
  }
  
  .configurable.active::before {
    content: "Dostęp";
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: crosshair;
    z-index: 3;
    pointer-events: auto; 
  }
  
  .hidden {
    display: none;
  }


  