.horiz_align {
  display: flex; /* Enables Flexbox */
  justify-content: space-between; /* Distributes elements with space between them */
  align-items: center; /* Aligns items vertically */
  gap: 10px; /* Optional: Adds space between items */
  flex-wrap: wrap; /* Allows items to wrap to the next line */
}
