.address{
margin-left: 10px;
}
.modelnavBox {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    padding: 6px;
    background: #f2f4f3;
    border-radius: 14px;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.modelnavBox::-webkit-scrollbar {
    display: none;
}

.modelnavBox a {
    flex: 1;
    min-width: 0;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    color: var(--ai-m-text-light);
    padding: 0 12px;
    white-space: nowrap;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.modelnavBox a:active {
    background: rgba(var(--ai-m-primary-rgb), 0.12);
    color: var(--ai-m-primary);
    transform: none;
}

.modelnavBox a.active {
    background: #fff;
    color: var(--ai-m-primary-dark);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(var(--ai-m-primary-rgb), 0.18);
    transform: none;
}