body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
}

.script-section {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
  position: relative;
}

.script-title {
  margin-top: 0;
  font-size: 1.6em;
  color: #00ff90;
}

.script-meta p {
  margin: 5px 0;
  line-height: 1.5;
}

.script-meta strong {
  color: #00ff90;
  display: inline-block;
  width: 180px;  /* wider to fit long labels */
  white-space: nowrap;
}


.script-meta span {
  color: #e0e0e0;
}

.script-description {
  margin-bottom: 15px;
}

.copy-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #00ff90;
  color: #121212;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.copy-btn:hover {
  background-color: #00e67a;
}

textarea {
  width: 100%;
  height: 300px;
  background-color: #1e1e1e;
  color: #00ff90;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 10px;
  font-family: monospace;
  resize: vertical;
  margin-top: 20px;
}

