/* Add these new styles for the custom URL feature */
.options-toggle {
  align-self: flex-start;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.options-toggle a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  cursor: pointer;
}

.options-toggle a:hover {
  text-decoration: underline;
}

.advanced-options {
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 1rem 0;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  margin-bottom: 0.5rem;
}

.custom-url-field {
  display: flex;
  align-items: center;
}

.url-prefix {
  color: var(--text-secondary);
  background-color: var(--accent);
  padding: 0.75rem;
  border-radius: var(--radius) 0 0 var(--radius);
}

.custom-url-field input {
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 0;
  flex-grow: 1;
}

.helper-text {
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.output {
  width: 100%;
}

.output pre {
  margin: 0.5rem 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.output-placeholder {
  color: var(--text-secondary);
}

#copy-btn {
  right: 1rem;
  height: auto;
  color: var(--text-primary);
  align-self: center;
  cursor: pointer;
}

pre#result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  word-break: break-all;
  border: 1px solid var(--accent);
}