﻿.image-container {
  display: flex; /* or inline-block if you prefer */
}

  .image-container img {
    width: auto; /* or a specific width if needed */
    height: auto; /* or a specific height if needed */
    margin-right: 10px; /* for spacing between images */
  }
.menu {
  background-color: #f0f0f0;
  padding: 10px;
}

  .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu li {
    display: inline;
    margin-right: 20px;
  }

  .menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px; /* Increased padding */
    font-size: 1.2em; /* Increased font size (or use px) */
    /* Other styles... */
  }

    .menu a:hover {
      background-color: #ddd;
    }

  .menu .aspNet-menu-selected {
    font-weight: bold;
  }
.small-text {
  font-size: 0.7em;
  color: gray;
  display: inline-block; /* Or display: block; */
}