body,
* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

h4 {
  line-height: 2em;
}

.header {
  width: 100% auto;
  background-color: rgba(240, 101, 41, 0.1);
  padding: 18px;
  text-align: center;
  color: #f29d80;
}

.header h1 {
  font-size: 20px;
  font-weight: 900;
}

.container {
  margin: 0;
}

.main {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

.column {
  background-color: white;
  margin: 10px;
  flex-grow: 4;
}

.left-column {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.right-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.table {
  border-collapse: collapse;
}

.table th,
.table tr,
.table td {
  border: 1px solid #222;
  padding: 4px;
}

th {
  font-weight: 600;
}

.file-upload-wrapper {
  display: inline-block;
  position: relative;
  margin: 10px 0;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.file-upload-label:hover {
  background-color: #e9e9e9;
}

.file-upload-button {
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.file-upload-text {
  font-size: 14px;
  color: #333;
}

.box {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.menutable-wrapper {
  margin-top: 10px;
}

.menutable {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-collapse: collapse;
}

.menutable th,
.menutable td {
  padding: 10px;
  border: 2px solid #f5f5f5;
}

.box-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* Redundant button font-family removed (already in *) */

.btn-primary {
  background-color: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb;
}

.form-select:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 120px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

.form-select {
  padding: 10px 14px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  appearance: none;
  margin-bottom: 4px;
}

.selected-wrapper {
  border: 1px dashed #b0b0b0;
  height: 40px;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  background-color: #fff;
  flex: 0.75;
  margin-bottom: 2px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.formbtn {
  margin-bottom: 4px;
  height: 40px;
  font-size: 14px;
}

/* Duplicate .btn-primary blocks removed */

.btn-secondary {
  background-color: #f63b3b;
  color: white;
}

.btn-secondary:hover {
  background-color: #eb2525;
}

.preview {
  border: 2px dashed #ddd;
  padding: 10px;
  border-radius: 4px;
}

.html {
  font-family: monospace;
  background-color: #222;
  padding: 20px;
  color: white;
}

.landing-hero {
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f1f1;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #666;
}

.landing-hero h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.text-muted {
  color: #888;
  font-weight: 400;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #ff6c2d;
  background: rgba(240, 101, 41, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.step-text strong {
  display: block;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.step-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(240, 101, 41, 0.2);
}

.security-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}
