.HorizontalWide
{
  display: flex;
  justify-content: space-between;
}

.leftHor
{
    /* Optional styles for the left div */
}
.rightHor
{
    /* Optional styles for the right div */
}

.HorizontalCentered 
{
  display: flex; /* Use flexbox for horizontal layout */
  gap: 10px; /* Add space between the input elements */
  justify-content: center;
}

/* Used for dimming de-selected images and other */
.dimmed
{
  opacity: 0.5; /* 50% opacity */
  transition: opacity 0.3s; /* Optional smooth transition */
}
