    /* Jelszóvédelem stílusa */
    #passwordModal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
    }
    
    #passwordModal.show {
      display: flex;
    }
    
    #passwordContainer {
      background-color: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      text-align: center;
      max-width: 400px;
    }
    
    #passwordContainer h2 {
      margin-top: 0;
      color: #333;
    }
    
    #passwordContainer input {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      box-sizing: border-box;
    }
    
    #passwordContainer button {
      background-color: #4CAF50;
      color: white;
      padding: 10px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }
    
    #passwordContainer button:hover {
      background-color: #45a049;
    }
    
    #passwordError {
      color: red;
      margin-top: 10px;
      display: none;
    }
    
    body.locked {
      overflow: hidden;
    }
