/* Container row for logos */
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

/* Each logo box */
.logo-box {
    width: 150px;
    height: 120px;
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Logo image */
.logo-box img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

/* Navigation row */
.az-nav {
    text-align: center;
    margin: 20px 0;
    font-family: sans-serif;
}

.az-nav-link {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.az-nav-link:hover {
    background-color: #f5f5f5;
    border-color: #999;
    color: #000;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add scroll spacing to A-Z anchor targets */
h2[id] {
  scroll-margin-top: 120px;  /* Adjust if admin bar or sticky header overlaps */
  padding-top: 0.5rem;
  margin-top: 2rem;
}