.saz-container {
    font-family: inherit;
    max-width: 100%;
}

/* Navigation Bar */
.saz-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
    padding: 10px;
    justify-content: center;
    /* Center the alphabet like in screenshot */
}

.saz-nav-item {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    background: #f9f9f9;
}

.saz-nav-item.active {
    color: #4da6ff;
    /* Blueish active color */
    background: #fff;
    cursor: pointer;
}

.saz-nav-item.active:hover {
    background-color: #f0f0f0;
    text-decoration: underline;
}

.saz-nav-item.disabled {
    color: #ccc;
    background: #fff;
    border-color: #eee;
    cursor: default;
}

/* Letter Groups */
.saz-group {
    margin-bottom: 40px;
}

.saz-group h3 {
    color: #a04040;
    /* Reddish header */
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.saz-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.saz-group li {
    margin-bottom: 5px;
    padding-left: 0;
}

.saz-group li a {
    text-decoration: none;
    color: #a04040;
    /* Red links to match screenshot names */
}

.saz-group li a:hover {
    text-decoration: underline;
}

/* Back to Top */
.saz-back-to-top {
    text-align: right;
    margin-top: 10px;
    font-size: 10px;
    text-transform: uppercase;
}

.saz-back-to-top a {
    color: #a04040;
    text-decoration: none;
}