
/*
@keyframes pulse-ring {
    0% { box-shadow: 0 0 10px 3px rgba(255, 200, 0, 0.6); }
    50% { box-shadow: 0 0 16px 6px rgba(255, 200, 0, 1); }
    100% { box-shadow: 0 0 10px 3px rgba(255, 200, 0, 0.6); }
}
*/

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 10px 3px rgba(255, 20, 147, 0.4); }
    50%  { box-shadow: 0 0 16px 6px rgba(255, 20, 147, 0.9); }
    100% { box-shadow: 0 0 10px 3px rgba(255, 20, 147, 0.4); }
  }


  .help-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 16px;
    border-radius: 50%;
    background-color: #ff69b4; /* Hot pink */
    color: white;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 4px;
    user-select: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease;
  }

  .help-icon:hover {
    background-color: #e0559e;
  }

  #help-controls button {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 4px;
    font-size: 10px;
    transition: background 0.2s;
  }
  
  #help-controls button:hover:not(:disabled) {
    background: #ddd;
  }





  /* Working on creating a Help Animation which overlays on the screen */
  /*********************************************************************/
  
  #show-help-demo-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 14px;
    background-color: #f06292; /* Soft pink */
    color: white;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10001; /* Above the overlay */
    cursor: pointer;
  }


  


