.btn.primary {
  width: 100%;
  padding: 0.8em;
  border-radius: 6px;
  font-size: 1em;
  text-align: center;
  border: none;
  outline: none;
  background: #ff7b00;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.primary:hover {
  background: #ff9500;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #30363d;
  color: #fff;
}

.btn.secondary:hover {
  background: #444c56;
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid #ff7b00;
  color: #ff7b00;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 123, 0, 0.1);
  transform: translateY(-2px);
}

.btn-success {
    background: #2ea043;
    border: none;
    padding: 0.6rem 1rem;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.btn-danger {
    background: #d73a49;
    border: none;
    padding: 0.6rem 1rem;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.input-field {
  padding: 0.8em;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.vertical-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
}

.vertical-buttons .btn {
  width: 100%;
  padding: 0.8em;
  border-radius: 6px;
  font-size: 1em;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
}
