.file-upload {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--box-bg-color);
}

.file-upload:hover {
  border-color: var(--primary-color);
  background: rgba(26, 116, 251, 0.05);
}

.file-upload.dragover {
  border-color: var(--primary-color);
  background: rgba(26, 116, 251, 0.1);
  transform: scale(1.02);
}

.file-upload input {
  display: none;
}

.file-upload-text {
  color: var(--box-text-color);
  font-weight: 500;
  font-size: 1.3rem;
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.more-options {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.more-options .grid {
  row-gap: 2rem;
  column-gap: 2rem;
}

.input-group .input-title {
  margin-bottom: 2rem;
}

.input-group.security label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.input-group.security input {
  box-shadow: none;
  width: fit-content;
  margin: 0;
}

.option-card {
  background: var(--box-bg-color);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
}

.option-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.option-card:has(input:checked),
.option-card.active {
  border-color: var(--primary-color);
  background: rgba(26, 116, 251, 0.1);
}

.result-container {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.result-container:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.result-header i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.result-code {
  font-size: 1.2rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
  background: var(--box-bg-color);
  color: var(--box-text-color);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  resize: none;
}

/* Stats Display */
.stats-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 1rem 0 !important;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--box-text-color);
}
