/* Global styling */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  line-height: 1.5;
}

section {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

h2 {
  margin-top: 0;
}

/* Form groups */
.form-group {
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  width: 130px;
  font-weight: bold;
}

input, select {
  padding: 5px;
  font-size: 1rem;
  width: 200px;
}

/* Row/column layout for splitting sections side by side */
.row {
  display: flex;
  flex-wrap: wrap; /* so it doesn't overflow on smaller screens */
  gap: 20px;
}

.col {
  flex: 1;
  min-width: 200px; /* adjust to your preference */
}

table {
  border-collapse: collapse;
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
}

th, td {
  padding: 8px;
  border: 1px solid #ccc;
}

.hidden {
  display: none;
}

.output-section pre {
  background-color: #f5f5f5;
  padding: 1rem;
  font-family: "Courier New", Courier, monospace;
  overflow-x: auto;
}

/* Script description styling */
.script-desc {
  border: 1px solid #eee;
  padding: 10px;
  background-color: #fafafa;
  min-height: 80px;
  line-height: 1.4;
}

.btn {
  text-decoration: none;
  display: flex;
  box-shadow: #9a9a9a -1px 2px 14px 0px;
  border-radius: 6px;
  padding: 0.5rem;
  width: max-content;
}

.head-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}