#pm-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

#pm-videos {
    display: flex;
    gap: 10px;
}

video {
    width: 50%;
    background: #000;
    border-radius: 6px;
}

#pm-controls button {
    margin: 5px;
    padding: 10px 15px;
}

#pm-chat {
    margin-top: 15px;
    border: 1px solid #ccc;
    padding: 10px;
}

#pm-chat-messages {
    height: 150px;
    overflow-y: auto;
    margin-bottom: 5px;
}

  /* Stylish button */
  #copyButton {
    background-color: #4CAF50; /* green */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

  #copyButton:hover {
    background-color: #45a049;
  }

  /* Message style */
  #copyMessage {
    display: none;
    margin-top: 10px;
    color: blue;
    font-weight: bold;
  }
  
   #refreshButton {
    background-color: #1E90FF; /* Blue button */
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
    transition: background 0.3s;
  }

  #refreshButton:hover {
    background-color: #0d6efd;
  }

  #refreshButton i {
    animation: spin 1s linear infinite; /* optional spinning icon */
  }

  @keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }