.oneline a,
.oneline p {
  display: inline-block;
  transition: 0.3s;
}

.oneline a:hover {
  color: rgb(195, 63, 63);
}

.back {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #ffffff;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.back:hover {
  background-color: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.back:active {
  transform: translateY(1px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
