/* Here you can add your CSS classes */
/* Icons left                                                        */
  .PnlUnselect {
   background-color: white;
   border: 1px solid white;
  }
  .PnlHovering {
   background-color: rgb(135, 206, 250); /* Light sky blue */
   border: 1px solid white;
  }
  .PnlSelected {
   background-color: rgb(124, 252, 0); /* Lawn green */
   border: 1px solid white;
  }
  .PnlHint {
   background-color: rgb(255, 255, 240);
   border: 1px solid silver;
  }
/* Definitions for the form accept command buttons                   */
  button.VVMVCmd {
   font-size: 14px;
   text-align: center;
   cursor: pointer;
   outline: none;
   color: white;
   background-color: rgb(240, 190, 0);
   border: 1px solid silver;
   border-radius: 5px;
  }
  button.VVMVCmd:hover {
   color: white;
   background-color: rgb(190, 120, 73);
   border: none;
   border-radius: 5px;
  }
  button.VVMVCmd:active {
   color: black;
   background-color: rgb(240, 190, 0);
   border: none;
   border-radius: 5px;
   transform: translateY(2px);
  }
  button.VVMVCmd:disabled {
   background-color: rgb(255, 255, 200);
   color: silver;
   border: 1px solid silver;
   cursor: not-allowed;
  }
  /* Definitions for the form input fields                       */
  input.VVMVField {
    background-color: rgb(255, 255, 220);
    border: 1px solid silver;
  }
  input.VVMVField:active {
    background-color: rgb(255, 255, 220);
    border: 1px solid black;
  }
  input.VVMVField:disabled {
    background-color: white;
    border: 1px solid silver;
  }
  
  
