/* Install page specific styles */

.install-header {
  border-bottom: none;
  margin-bottom: 24px;
  padding: 20px 0;
  text-align: center;
}

.install-header h1 {
  margin-bottom: 0.3em;
}

.install-header .subtitle {
  text-align: center;
}

/* Better spacing for section headings */
.container h2 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.container h3 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

/* Deployment selector */
.deployment-options {
  margin: 2em 0;
}

.deployment-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
  padding: 1.25em;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.deployment-option:hover {
  border-color: #999;
  background-color: #f9f9f9;
}

.deployment-option:has(input[type="radio"]:checked) {
  border-color: #333;
  background-color: #f5f5f5;
}

.deployment-option input[type="radio"] {
  margin-right: 0.75em;
  margin-top: 0.2em;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.deployment-option-content {
  flex: 1;
}

.deployment-option small {
  display: block;
  margin-top: 0.5em;
  color: #666;
  line-height: 1.4;
}

/* Prerequisites sections */
.prerequisites-section {
  margin-bottom: 2em;
}

.hidden {
  display: none;
}

/* Deployment links section */
#deployment-links {
  margin: 2em 0;
  padding: 2em;
  background-color: #fafafa;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

#deployment-links h3 {
  margin-top: 0;
}

#deployment-links > p {
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: 600;
  color: #333;
}

.deployment-link-box {
  margin-bottom: 2em;
}

.url-input {
  width: 100%;
  padding: 0.75em;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.85em;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  margin-bottom: 0.75em;
  box-sizing: border-box;
}

.button-group {
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
}

.cli-command {
  width: 100%;
  padding: 1em;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.8em;
  background-color: #1e1e1e;
  color: #d4d4d4;
  border-radius: 4px;
  overflow-x: auto;
  white-space: pre;
  margin: 0 0 0.75em 0;
  box-sizing: border-box;
  line-height: 1.5;
}

.primary-button {
  padding: 0.75em 1.5em;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
  font-size: 0.95em;
}

.primary-button:hover {
  background-color: #1d4ed8;
}

.secondary-button {
  padding: 0.75em 1.5em;
  background-color: white;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 0.95em;
}

.secondary-button:hover {
  border-color: #999;
  background-color: #f5f5f5;
}

#deployment-links ol {
  margin-top: 0.75em;
  padding-left: 1.5em;
}

#deployment-links ol li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}
