.ssh2-btns { text-align: center; margin: 30px 0; }
.ssh2-button {
  background: #007f4f;
  color: white;
  border: none;
  padding: 14px 28px;
  margin: 10px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
.ssh2-button:hover { background: #005c39; }
.ssh2-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}
.ssh2-modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ssh2-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #888;
}
.ssh2-close:hover {
  color: #007f4f;
}
.ssh2-modal-content input, .ssh2-modal-content select {
  width: 100%; margin: 10px 0; padding: 10px;
}