
/*
@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;
  }



  
  /* creating a way to show videos or images in my app for demonstration purposes to a user.*/
  /* I will use it while creating help videos*/

  #record-media-overlay {
    position: absolute;
    bottom: 30px;
    left: 10px;
    width: 300px;
    height: 220px;
    border: 2px solid #333;
    background: black;
    display: none;
    z-index: 100;
  }

  #record-media-overlay video,
  #record-media-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #record-video-controls-id {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 2px;
    display: flex;
    justify-content: center;
    gap: 2px;
    z-index: 101;
  }


  .record-video-display-button-class {
    margin: 1px;
    padding: 1px 1px;
    font-size:10px !important;

  }


  


