/* Style the log box */
#logBox {
  width: 100%;
  height: 200px; /* Adjust the height to your preference */
  overflow-y: scroll; /* Enable vertical scrolling */
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
  font-family: "Courier New", monospace; /* Use monospace font for logs */
  white-space: pre-wrap; /* To keep line breaks and spaces */
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#buttonContainer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#buttonContainer button {
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  transition: background-color 0.3s ease;
  width: 150px; /* Fixed width */
  text-align: center;
}

#buttonContainer button:hover {
  background-color: #0056b3;
}
