body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0;
  margin: 0;
}

#buddy-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

button#launchBuddy {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.hidden {
  display: none;
}

#buddyFace {
  width: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
}

#statusText {
  font-size: 18px;
  margin: 10px 0;
}