body{
  background: black;
}
/* styles.css */

/* Style the install button */
#install {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#install:hover {
    background-color: #0056b3;
}

/* Hide the button initially */
#install[hidden] {
    display: none;
}
